mark texts for translation
[redakcja.git] / redakcja / templates / registration.html
1 {% extends "catalogue/base.html" %}
2 {% load i18n %}
3
4 {% block content %}
5 <div class="row">
6 <div class="col-md-6 col-md-offset-3">
7
8     <h1 style="margin-bottom:1em">{% trans "Register" %}</h1>
9
10
11     <form enctype="multipart/form-data" method="POST">
12     {% csrf_token %}
13         {{ form.non_field_errors }}
14         <label for="title">{% trans "First name" %}</label>
15             {{ form.first_name.errors }}
16             <input class="form-control" name="first_name" type="text">
17         <label for="title">{% trans "Last name" %}</label>
18             {{ form.last_name.errors }}
19             <input class="form-control" name="last_name" type="text">
20         <label for="title">{% trans "E-mail" %}</label>
21             {{ form.email.errors }}
22             <input class="form-control" name="email" type="email">
23         <label for="title">{% trans "Your new password" %}</label>
24             {{ form.password.errors }}
25             <input class="form-control" name="password" type="password">
26
27         <button style="margin-top:1em;" class="btn btn-default" type="submit">{% trans "Register" %}</button></td></tr>
28     </form>
29
30 </div>
31 </div>
32 {% endblock content %}