2019-07-27 11:58:09 +00:00
|
|
|
{# vim: set ts=2 sw=2 et tw=80: #}
|
2018-08-08 18:07:59 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% load static %}
|
2019-07-27 11:58:09 +00:00
|
|
|
{% load i18n %}
|
2018-08-08 18:07:59 +00:00
|
|
|
|
|
|
|
{% block style %}
|
|
|
|
<link rel="stylesheet" href="{% static "css/user.css" %}">
|
|
|
|
{% endblock %}
|
|
|
|
|
2019-07-27 11:58:09 +00:00
|
|
|
{% block title %}{% trans "Register" %}{% endblock %}
|
2018-08-08 18:07:59 +00:00
|
|
|
|
|
|
|
{% block content %}
|
2019-07-27 11:58:09 +00:00
|
|
|
<h1 class="center">{% trans "Register" %}</h1>
|
2018-08-08 18:07:59 +00:00
|
|
|
<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">
|
2019-07-27 11:58:09 +00:00
|
|
|
<a href="#"><button type="submit">{% trans "Register" %}</button></a>
|
2018-08-08 18:07:59 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|