polyblog/templates/usermanager/usernew.html

29 lines
899 B
HTML

{% extends "base.html" %}
{% block content %}
<table style="align: center; width: 50%; margin-left: auto; margin-right: auto">
<tbody>
<tr>
<td>
<h1>Create a new user:</h1>
<form action="" method="post">
{% csrf_token %}
<b>Username:</b><br/>
<small>Your login, not changeable. Stay alphanumeric.</small><br/>
{{ editform.username }} <i>(required)</i><br/><br/>
<b>Email Address:</b><br/>
{{ editform.email }} <i>(optional)</i><br/><br/>
<b>Low Security Captcha:</b><br/>
<small>Enter the word 'linux' inverted (back front)</small><br/>
{{ editform.botquestion }} <i>(required)</i><br/><br/>
<b>Password:</b><br/>
{{ editform.password }} <i>(required)</i><br/><br/>
<input type="submit" value="Submit" />
</form>
</td>
</tr>
</tbody>
</table>
{% endblock %}