12 lines
418 B
HTML
12 lines
418 B
HTML
|
{% extends "registration/registration_base.html" %}
|
||
|
{% load i18n %}
|
||
|
{% load bootstrap %}
|
||
|
{% block title %}{% trans "Register for an account" %}{% endblock %}
|
||
|
{% block content %}
|
||
|
<h1>Register new account</h1>
|
||
|
<form method='post' action=''>{% csrf_token %}
|
||
|
{{ form|bootstrap }}
|
||
|
<button type="submit" class="btn btn-primary">{% trans "Send activation email" %}</button>
|
||
|
</form>
|
||
|
{% endblock %}
|