1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-05-14 19:00:23 +00:00
seahub/templates/registration/registration_form.html

27 lines
893 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block title %}用户注册{% endblock %}
{% block content %}
<h2>用户注册</h2>
<form action="" method="post" class="reg">
<label for="id_username">用户 ID</label>
{{ form.userid }}
{% if form.userid.errors %}
{{ form.userid.errors }}
{% endif %}<br />
<label for="id_email">邮箱:</label>
{{ form.email }}<span>(我们将给您发送帐号激活邮件.)</span>
{% if form.email.errors %}
{{ form.email.errors }}
{% endif %}<br />
<label for="id_password1">密码:</label>
{{ form.password1 }}
{% if form.password1.errors %}
{{ form.password1.errors }}
{% endif %}<br />
<label for="id_password2">确认密码:</label>
{{ form.password2 }}<br />
<input type="submit" value="提交" class="submit" />
</form>
{% endblock %}