mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-23 10:04:01 +03:00
Cleaned up signup form
This commit is contained in:
parent
bc9e9c7d22
commit
f31e10042f
|
@ -7,18 +7,25 @@
|
||||||
{% block title %}{% trans "Signup" %}{% endblock title %}
|
{% block title %}{% trans "Signup" %}{% endblock title %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>{% trans "Sign Up" %}</h1>
|
|
||||||
|
|
||||||
<p>{% blocktrans %}Already have an account? Then please <a href="{{ login_url }}">sign in</a>.{% endblocktrans %}</p>
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-5">
|
||||||
|
<h1>{% trans "Sign Up" %}</h1>
|
||||||
|
|
||||||
<form class="signup" id="signup_form" method="post" action="{% url 'account_signup' %}">
|
<p>{% blocktrans %}Already have an account? Then please <a href="{{ login_url }}">sign in</a>.{% endblocktrans %}</p>
|
||||||
{% csrf_token %}
|
|
||||||
{{ form|crispy }}
|
<form class="signup" id="signup_form" method="post" action="{% url 'account_signup' %}">
|
||||||
{% if redirect_field_value %}
|
{% csrf_token %}
|
||||||
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
|
{{ form|crispy }}
|
||||||
{% endif %}
|
{% if redirect_field_value %}
|
||||||
<button class="btn btn-primary" type="submit">{% trans "Sign Up" %} »</button>
|
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
|
||||||
</form>
|
{% endif %}
|
||||||
|
<button class="btn btn-primary" type="submit">{% trans "Sign Up" %} »</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user