52 lines
1.4 KiB
HTML
52 lines
1.4 KiB
HTML
{% extends "account/base.html" %}
|
|
|
|
{% load i18n %}
|
|
{% load account_tags %}
|
|
|
|
{% block head_title %}{% trans "Sign In" %}{% endblock %}
|
|
|
|
|
|
{% block modal_content %}
|
|
|
|
<h1>{% trans "Sign In" %}</h1>
|
|
|
|
{% if not user.is_authenticated %}
|
|
|
|
{% if socialaccount.providers %}
|
|
<p>{% blocktrans with site.name as site_name %}Please sign in with one
|
|
of your existing third party accounts. Or, <a
|
|
href="{{ signup_url }}">sign up</a> for a {{site_name}} account and sign in
|
|
below:{% endblocktrans %}</p>
|
|
|
|
<div class="socialaccount_ballot">
|
|
|
|
<ul class="socialaccount_providers">
|
|
{% include "socialaccount/snippets/provider_list.html" %}
|
|
</ul>
|
|
|
|
<div class="login-or">{% trans 'or' %}</div>
|
|
|
|
</div>
|
|
|
|
{% include "socialaccount/snippets/login_extra.html" %}
|
|
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
<form class="login" method="POST" action="{% url account_login %}">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
{% if redirect_field_value %}
|
|
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
|
|
{% endif %}
|
|
<a class="button secondaryAction" href="{% url account_reset_password %}">{% trans "Forgot Password?" %}</a>
|
|
<button class="primaryAction" type="submit">{% trans "Sign In" %}</button>
|
|
</form>
|
|
|
|
{% if user.is_authenticated %}
|
|
{% include "account/snippets/already_logged_in.html" %}
|
|
{% endif %}
|
|
|
|
|
|
{% endblock %}
|
|
|