2013-09-28 12:43:57 +02:00
|
|
|
{% extends "registration/registration_base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% load bootstrap %}
|
|
|
|
{% block title %}{% trans "Register for an account" %}{% endblock %}
|
|
|
|
{% block content %}
|
2013-09-29 16:40:13 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-4">
|
2013-09-28 12:43:57 +02:00
|
|
|
<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>
|
2013-09-29 16:40:13 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2013-09-28 12:43:57 +02:00
|
|
|
{% endblock %}
|