2016-04-23 02:22:44 -05:00
|
|
|
{% extends "hosting/base_short.html" %}
|
2017-10-07 14:38:48 +05:30
|
|
|
{% load i18n staticfiles bootstrap3%}
|
2017-07-24 19:43:03 +05:30
|
|
|
|
|
|
|
|
{% block navbar %}
|
2017-10-07 14:38:48 +05:30
|
|
|
{% include 'hosting/includes/_navbar_transparent.html' %}
|
2017-07-24 19:43:03 +05:30
|
|
|
{% endblock navbar %}
|
|
|
|
|
|
2016-04-23 02:22:44 -05:00
|
|
|
{% block content %}
|
2017-10-07 14:38:48 +05:30
|
|
|
<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 ?" %}
|
2018-01-17 16:31:46 +05:30
|
|
|
<a href="{% url 'hosting:signup' %}">{% trans "Sign up" %}</a>
|
2017-10-07 14:38:48 +05:30
|
|
|
</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>
|
2017-05-28 00:44:36 -05:00
|
|
|
</div>
|
2015-05-27 12:21:30 +02:00
|
|
|
</div>
|
2017-06-01 15:40:19 -05:00
|
|
|
</div>
|
2015-05-27 12:21:30 +02:00
|
|
|
</div>
|
2017-08-04 00:28:15 +05:30
|
|
|
</div>
|
2016-04-23 02:22:44 -05:00
|
|
|
{% endblock %}
|