39 lines
1.2 KiB
HTML
39 lines
1.2 KiB
HTML
{% extends "account/base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block head_title %}{% trans "Signup" %}{% endblock %}
|
|
|
|
{% block modal_content %}
|
|
<h1>{% trans "Sign Up" %}</h1>
|
|
|
|
{% if user.is_authenticated %}
|
|
{% include "account/snippets/already_logged_in.html" %}
|
|
{% else %}
|
|
<p>{% blocktrans %}Already have an account? Then please <a href="{{ login_url }}">sign in</a>.{% endblocktrans %}</p>
|
|
|
|
<form class="signup" id="signup_form" method="post" action="{% url account_signup %}">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
|
|
<script>
|
|
var fn= "{{ request.session.invitee_first_name }}"
|
|
var ln= "{{ request.session.invitee_last_name }}"
|
|
var email= "{{ request.session.invitee_email }}"
|
|
|
|
</script>
|
|
|
|
{% if request.session.invite_code %}
|
|
<input type="hidden" name="icode" value="{{ request.session.invite_code }}" />
|
|
{% endif %}
|
|
|
|
{% if redirect_field_value %}
|
|
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
|
|
{% endif %}
|
|
<button type="submit">{% trans "Sign Up" %} »</button>
|
|
</form>
|
|
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
|