Guest User

Untitled

a guest
Jul 10th, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1.  
  2. <h2>Registration</h2>
  3. <div class="registration">
  4. <form method="post" action="{baseurl}/register">
  5. <fieldset>
  6. <legend>User Information</legend>
  7.  
  8. <label for="user"><b>Username: </b> <input type="text" name="user" id="user" /></label>
  9. <br />
  10. <label for="email"><b>E-mail: </b> <input type="text" name="email" id="email" class="email" /></label>
  11. <label for="confirm-email"><b>Confirm E-mail: </b> <input type="text" id="confirm-email" "name="cemail" class="email" /></label>
  12. </fieldset>
  13.  
  14. <fieldset>
  15. <legend>Game Information</legend>
  16. <br />
  17. <label for="password1"><b>Password: </b> <input type="password" name="password" id="password" /></label>
  18. <label for="password2"><b>Confirm Password: </b> <input type="password" name="cpassword" id="confirm-password" /></label>
  19. </fieldset>
  20.  
  21. <fieldset>
  22. <legend>Security Information</legend>
  23. <br />
  24. <label for="question"><b>Security Question: </b></label>
  25. <select name="Question">
  26. <option value="Who is your favorite cartoon character?">Who is your favorite cartoon character?</option>
  27. <option value="What was the first video game you played?">What was the first video game you played?</option>
  28. <option value="Who is your favorite super hero?">Who is your favorite super hero?</option>
  29. <option value="What was the name of your first teacher?">What was the name of your first teacher?</option>
  30. <option value="What city was your mother born in?">What city was your mother born in?</option>
  31. <option value="What is the name of your first pet?">What is the name of your first pet?</option>
  32. </select>
  33.  
  34. <br />
  35. <br />
  36. <label for="answer"><b>Security Answer</b> <input type="text" name="answer" id="answer" /></label>
  37. </fieldset>
  38.  
  39. <input type="submit" id="registrationSubmit" name="submitButton" type="submit" value="Submit" />
  40. </form>
  41. </div>
Add Comment
Please, Sign In to add comment