summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/registration/registration_form.html
blob: e6c7c42e214467e6b59fdeefe237c6b4c70cad92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}
{% load i18n %}

{% block content %}
<div class="container">
  <div class="row justify-content-center">
    <div class="col-lg-4 col-md-6 col-sm-10">
      <h3 class="text-center">{% trans "Register" %}</h3>
      <form method="post" action=".">{% csrf_token %}
  {{ form.as_table }}
  <tr><td colspan='2'><input type="submit" value="{% trans 'Submit' %}" /></td></tr>
  </table>
</form>
</div>
{% endblock %}