2017-09-24 12:34:11 +00:00
|
|
|
{% extends "hosting/base_short.html" %}
|
2017-10-07 09:08:48 +00:00
|
|
|
{% load staticfiles bootstrap3 i18n %}
|
2017-09-24 12:34:11 +00:00
|
|
|
|
|
|
|
{% block navbar %}
|
2017-10-07 09:08:48 +00:00
|
|
|
{% include 'hosting/includes/_navbar_transparent.html' %}
|
2017-09-24 12:34:11 +00:00
|
|
|
{% endblock navbar %}
|
|
|
|
|
|
|
|
{% block content %}
|
2017-10-07 09:08:48 +00:00
|
|
|
<div class="auth-container">
|
|
|
|
<div class="auth-bg"></div>
|
2017-09-24 12:34:11 +00:00
|
|
|
<div class="auth-center">
|
2017-10-07 09:08:48 +00:00
|
|
|
<div class="auth-content wide">
|
|
|
|
<div class="auth-box sign-up">
|
|
|
|
<h1 class="section-heading">{% trans "Resend activation link" %}</h1>
|
|
|
|
{% include 'hosting/includes/_messages.html' %}
|
2017-09-24 12:34:11 +00:00
|
|
|
<form action="{% url 'hosting:resend_activation_link' %}" method="post" class="form" novalidate>
|
|
|
|
{% csrf_token %}
|
|
|
|
{% for field in form %}
|
|
|
|
{% bootstrap_field field show_label=False %}
|
|
|
|
{% endfor %}
|
2017-10-07 09:08:48 +00:00
|
|
|
<div class="text-center">
|
|
|
|
<button type="submit" class="btn choice-btn">
|
2017-09-24 12:34:11 +00:00
|
|
|
{% trans "Submit"%}
|
|
|
|
</button>
|
2017-10-07 09:08:48 +00:00
|
|
|
</div>
|
2017-09-24 12:34:11 +00:00
|
|
|
</form>
|
2017-10-07 09:08:48 +00:00
|
|
|
<div class="auth-footer">
|
|
|
|
<div>
|
|
|
|
{% trans "Don't have an account yet ?" %}
|
|
|
|
<a class="" href="{% url 'hosting:signup' %}">{% trans "Sign up" %}</a>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
or <a href="{% url 'hosting:reset_password' %}">{% trans "Forgot your password ?" %}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-09-24 12:34:11 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-10-07 09:08:48 +00:00
|
|
|
</div>
|
2017-09-24 12:34:11 +00:00
|
|
|
{% endblock %}
|