arrowcounter/user/templates/registration/registration.html

27 lines
621 B
HTML
Raw Normal View History

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