1 {% extends "catalogue/base.html" %}
7 <div class="col-md-6 col-md-offset-3">
9 <h1 style="margin-bottom:1em">{% trans "Register" %}</h1>
12 <form enctype="multipart/form-data" method="POST">
14 {{ form.non_field_errors }}
15 {% render_honeypot_field %}
16 <label for="title">{% trans "First name" %}</label>
17 {{ form.first_name.errors }}
18 <input class="form-control" name="first_name" type="text">
19 <label for="title">{% trans "Last name" %}</label>
20 {{ form.last_name.errors }}
21 <input class="form-control" name="last_name" type="text">
22 <label for="title">{% trans "E-mail" %}</label>
23 {{ form.email.errors }}
24 <input class="form-control" name="email" type="email">
25 <label for="title">{% trans "Your new password" %}</label>
26 {{ form.password.errors }}
27 <input class="form-control" name="password" type="password">
29 <button style="margin-top:1em;" class="btn btn-default" type="submit">{% trans "Register" %}</button>
34 {% endblock content %}