arrowcounter/user/templates/registration/registration.html
Claudio Maggioni (maggicl) 4848698d63 Added translations in italian
2019-07-27 13:58:09 +02:00

27 lines
621 B
HTML

{# vim: set ts=2 sw=2 et tw=80: #}
{% extends 'base.html' %}
{% load static %}
{% load i18n %}
{% block style %}
<link rel="stylesheet" href="{% static "css/user.css" %}">
{% endblock %}
{% block title %}{% trans "Register" %}{% endblock %}
{% block content %}
<h1 class="center">{% trans "Register" %}</h1>
<form method="post">
<div class="col s12 card" id="registration-form">
<div class="card-content">
{% csrf_token %}
{{ form.as_p }}
</div>
<div class="card-action">
<a href="#"><button type="submit">{% trans "Register" %}</button></a>
</div>
</div>
</form>
{% endblock %}