2018-11-10 13:54:35 +00:00
|
|
|
{% extends "hosting/base_short.html" %}
|
2019-01-26 13:02:37 +00:00
|
|
|
{% load i18n staticfiles %}
|
2018-11-10 13:54:35 +00:00
|
|
|
|
|
|
|
{% block navbar %}
|
|
|
|
{% include 'hosting/includes/_navbar_transparent.html' %}
|
|
|
|
{% endblock navbar %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="auth-container">
|
|
|
|
<div class="auth-bg"></div>
|
|
|
|
<div class="auth-center">
|
|
|
|
<div class="auth-content">
|
|
|
|
<div class="auth-box">
|
|
|
|
<h1 class="section-heading allcaps">{% trans "Log in" %}</h1>
|
|
|
|
{% include 'hosting/includes/_messages.html' %}
|
|
|
|
<form action="{% url 'hosting:login' %}" method="post" class="form" novalidated>
|
|
|
|
{% csrf_token %}
|
|
|
|
{% for field in form %}
|
|
|
|
{% bootstrap_field field show_label=False type='fields'%}
|
|
|
|
{% endfor %}
|
|
|
|
<p class="red">{{form.non_field_errors|striptags}}</p>
|
|
|
|
<div class="text-center">
|
|
|
|
<button type="submit" class="btn choice-btn">
|
|
|
|
{% trans "Log in" %}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<input type='hidden' name='next' value='{{request.GET.next}}'/>
|
|
|
|
</form>
|
|
|
|
<div class="auth-footer">
|
|
|
|
<div>
|
|
|
|
{% trans "Don't have an account yet ?" %}
|
|
|
|
<a href="{% url 'hosting:signup' %}">{% trans "Sign up" %}</a>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
or <a href="{% url 'hosting:reset_password' %}">{% trans "Forgot your password ?" %}</a><br>
|
|
|
|
or <a href="{% url 'hosting:resend_activation_link' %}">{% trans "Resend activation link" %}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|