mostly filebased Content Presentation System
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <form action="/register" style="border:1px solid #ccc">
- <div class="container">
- <h1>Sign Up</h1>
- <p>Please fill in this form to create an account.</p>
- <hr>
-
- <label for="email"><b>Email</b></label>
- <input
- type="text"
- placeholder="Enter Email"
- name="email"
- value="{{ @FORM.email }}"
- required>
-
- <label for="psw"><b>Password</b></label>
- <input
- type="password"
- placeholder="Enter Password"
- name="psw"
- value="{{ @FORM.password }}"
- required>
-
- <label for="psw-repeat"><b>Repeat Password</b></label>
- <input type="password" placeholder="Repeat Password" name="psw-repeat" required>
-
- <label>
- <input type="checkbox" checked="checked" name="remember"> Remember me
- </label>
-
- <p>By creating an account you agree to our <a href="/terms" >Terms & Privacy</a>.</p>
-
- <div class="clearfix">
- <button type="button" class="cancelbtn">Cancel</button>
- <button type="submit" class="signupbtn">Sign Up</button>
- </div>
- </div>
- </form>
|