22 lines
452 B
HTML
22 lines
452 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load i18n %}
|
|
{% load account %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
<div class="col-md-6 col-md-offset-3">
|
|
<h1>{% trans "Signup" %}</h1>
|
|
|
|
<form class="login" method="POST">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
<button class="form-control btn btn-black" type="submit">{% trans "Sign Up" %}</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|