/forum/templates/registration/registration_form.html
HTML | 60 lines | 35 code | 9 blank | 16 comment | 0 complexity | 8bcaaeeadaba3e4917306e0d95275972 MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0
1{% extends "forum/base.html" %} 2{% load customfilters %} 3 4{% block title %} 5DjangoPower?? 6{% endblock %} 7 8{% block content %} 9<form name="register" method="post" action="."> 10 11<table class="tablebg" width="100%" cellspacing="1"> 12<tr> 13 <th colspan="2" valign="middle">????</th> 14</tr> 15 16 17<tr> 18 <td class="row1" width="38%"><b class="genmed">???: </b><br /><span class="gensmall">3-30???,????</span></td> 19 <td class="row2">{{form.username}}{{form.username.errors}}</td> 20</tr> 21<tr> 22 <td class="row1"><b class="genmed">E-mail??: </b><br /><span class="gensmall">????????????????</span></td> 23 <td class="row2">{{form.email}}{{form.email.errors}}</td> 24</tr> 25 26<tr> 27 <td class="row1"><b class="genmed">??: </b><br /><span class="gensmall">6-30???</span></td> 28 <td class="row2">{{form.password1}}{{form.password.errors}}</td> 29</tr> 30 31<tr> 32 <td class="row1"><b class="genmed">??: </b><br /><span class="gensmall">6-30???</span></td> 33 <td class="row2">{{form.password2}}{{form.password.errors}}</td> 34</tr> 35 36<!-- 37 <tr> 38 <th colspan="2" valign="middle">Confirmation of registration</th> 39 </tr> 40 <tr> 41 <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> 42 </tr> 43 44 <tr> 45 <td class="row1" colspan="2" align="center"><img src="./ucp.php?mode=confirm&id=89d0a70fa9036150ef595b42959bd47d&type=1" alt="" title="" /></td> 46 </tr> 47 <tr> 48 <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> 49 <td class="row2"><input class="post" type="text" name="confirm_code" size="8" maxlength="8" /></td> 50 </tr> 51--> 52<tr> 53 <td class="cat" colspan="2" align="center"> 54 <input class="btnmain" type="submit" name="submit" id="submit" value="??" /> 55 </td> 56</tr> 57</table> 58</form> 59 60{% endblock %}