/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
- {% extends "forum/base.html" %}
- {% load customfilters %}
-
- {% block title %}
- DjangoPower??
- {% endblock %}
-
- {% block content %}
- <form name="register" method="post" action=".">
-
- <table class="tablebg" width="100%" cellspacing="1">
- <tr>
- <th colspan="2" valign="middle">????</th>
- </tr>
-
-
- <tr>
- <td class="row1" width="38%"><b class="genmed">???: </b><br /><span class="gensmall">3-30???,????</span></td>
- <td class="row2">{{form.username}}{{form.username.errors}}</td>
- </tr>
- <tr>
- <td class="row1"><b class="genmed">E-mail??: </b><br /><span class="gensmall">????????????????</span></td>
- <td class="row2">{{form.email}}{{form.email.errors}}</td>
- </tr>
-
- <tr>
- <td class="row1"><b class="genmed">??: </b><br /><span class="gensmall">6-30???</span></td>
- <td class="row2">{{form.password1}}{{form.password.errors}}</td>
- </tr>
-
- <tr>
- <td class="row1"><b class="genmed">??: </b><br /><span class="gensmall">6-30???</span></td>
- <td class="row2">{{form.password2}}{{form.password.errors}}</td>
- </tr>
-
- <!--
- <tr>
- <th colspan="2" valign="middle">Confirmation of registration</th>
- </tr>
- <tr>
- <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>
- </tr>
-
- <tr>
- <td class="row1" colspan="2" align="center"><img src="./ucp.php?mode=confirm&id=89d0a70fa9036150ef595b42959bd47d&type=1" alt="" title="" /></td>
- </tr>
- <tr>
- <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>
- <td class="row2"><input class="post" type="text" name="confirm_code" size="8" maxlength="8" /></td>
- </tr>
- -->
- <tr>
- <td class="cat" colspan="2" align="center">
- <input class="btnmain" type="submit" name="submit" id="submit" value="??" />
- </td>
- </tr>
- </table>
- </form>
-
- {% endblock %}