/forum/templates/registration/registration_form.html

http://djforum.googlecode.com/ · HTML · 60 lines · 35 code · 9 blank · 16 comment · 0 complexity · 8bcaaeeadaba3e4917306e0d95275972 MD5 · raw file

  1. {% extends "forum/base.html" %}
  2. {% load customfilters %}
  3. {% block title %}
  4. DjangoPower??
  5. {% endblock %}
  6. {% block content %}
  7. <form name="register" method="post" action=".">
  8. <table class="tablebg" width="100%" cellspacing="1">
  9. <tr>
  10. <th colspan="2" valign="middle">????</th>
  11. </tr>
  12. <tr>
  13. <td class="row1" width="38%"><b class="genmed">???: </b><br /><span class="gensmall">3-30???,????</span></td>
  14. <td class="row2">{{form.username}}{{form.username.errors}}</td>
  15. </tr>
  16. <tr>
  17. <td class="row1"><b class="genmed">E-mail??: </b><br /><span class="gensmall">????????????????</span></td>
  18. <td class="row2">{{form.email}}{{form.email.errors}}</td>
  19. </tr>
  20. <tr>
  21. <td class="row1"><b class="genmed">??: </b><br /><span class="gensmall">6-30???</span></td>
  22. <td class="row2">{{form.password1}}{{form.password.errors}}</td>
  23. </tr>
  24. <tr>
  25. <td class="row1"><b class="genmed">??: </b><br /><span class="gensmall">6-30???</span></td>
  26. <td class="row2">{{form.password2}}{{form.password.errors}}</td>
  27. </tr>
  28. <!--
  29. <tr>
  30. <th colspan="2" valign="middle">Confirmation of registration</th>
  31. </tr>
  32. <tr>
  33. <td class="row3" colspan="2"><span class="gensmall">To prevent automated registrations the board requires you to enter a confirmation code. The code is displayed in the image you should see below. If you are visually impaired or cannot otherwise read this code please contact the <a href="mailto:support@osdev.org">Board Administrator</a>.</span></td>
  34. </tr>
  35. <tr>
  36. <td class="row1" colspan="2" align="center"><img src="./ucp.php?mode=confirm&amp;id=89d0a70fa9036150ef595b42959bd47d&amp;type=1" alt="" title="" /></td>
  37. </tr>
  38. <tr>
  39. <td class="row1"><b class="genmed">Confirmation code: </b><br /><span class="gensmall">Enter the code exactly as it appears. All letters are case insensitive, there is no zero.</span></td>
  40. <td class="row2"><input class="post" type="text" name="confirm_code" size="8" maxlength="8" /></td>
  41. </tr>
  42. -->
  43. <tr>
  44. <td class="cat" colspan="2" align="center">
  45. <input class="btnmain" type="submit" name="submit" id="submit" value="??" />
  46. </td>
  47. </tr>
  48. </table>
  49. </form>
  50. {% endblock %}