mostly filebased Content Presentation System
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- <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>
|