Merge branch 'bug/13917' into release/0.10.2
[ganeti_webmgr.git] / ganeti_web / templates / registration / registration_form.html
blob4ee4dca80a06153c89cdb91d138ac208fb3013a4
1 {% extends "no_menu_base.html" %}
2 {% load i18n layout_tags %}
3 {% block content %}
4 <div id="registration">
5 <h1>{% trans "Registration" %}</h1>
6 {% open_registration %}
7 <fieldset>
8 <form method="post">
9 {% csrf_token %}
10 {{ form.as_p }}
11 <input class="submit"type="submit" value="{% trans "Create" %}" />
12 </form>
13 </fieldset>
14 {% else %}
15 <p>Registration is not open on this server. Please contact an
16 administrator if you require an account.</p>
17 {% endopen_registration %}
18 </div>
19 {% endblock %}