add register client template

This commit is contained in:
Paul Marillonnet 2019-05-10 11:28:40 +02:00
parent 16565b5b55
commit a1202cbb84
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{% extends "authentic2/base-page.html" %}
{% load i18n %}
{% block page-title %}
{{ block.super }} - {{ view.title }}
{% endblock %}
{% block breadcrumb %}
{{ block.super }}
<a href="..">{% trans "Your account" %}</a>
<a href="">{{ view.title }}</a>
{% endblock %}
{% block content %}
Client registration.
<form enctype="multipart/form-data" method="post">
{% csrf_token %}
{{ form.as_p }}
<button class="submit-button">{% trans "Register" %}</button>
</form>
{% endblock %}