2016-04-23 07:22:44 +00:00
|
|
|
{% extends "hosting/base_short.html" %}
|
Created signup view. Added login after signup.Added signup url to nosystem app urls.py. Added logout view, Added logout button on nabber, Added password reset form, Added password view , Added password reset html, Added password reset email for nosystemd app. Added confirm_reset_password.html, Added confirm_ reset password view, Added confirm reset password form, Fixed reset password token generation, Started donation view, Added donation view, Added donation.html, Added donation form, Adding donation.js lib in order to capture stripe payments for nosystem app.
2016-07-22 06:24:32 +00:00
|
|
|
{% load staticfiles bootstrap3 i18n %}
|
2016-07-19 02:24:44 +00:00
|
|
|
|
2016-04-23 07:22:44 +00:00
|
|
|
{% block content %}
|
2017-06-01 20:40:19 +00:00
|
|
|
<div class="auth-container auth-signup">
|
2017-05-28 17:57:02 +00:00
|
|
|
<div class="auth-bg"></div>
|
2017-06-01 20:40:19 +00:00
|
|
|
<div class="auth-center ">
|
|
|
|
<div class="auth-title">
|
|
|
|
<h2>{% trans "Your VM hosted in Switzerland"%}</h2>
|
|
|
|
</div>
|
|
|
|
<div class="auth-content">
|
|
|
|
<div class="intro-message auth-box sign-up">
|
|
|
|
<h2 class="section-heading">{% trans "Sign up"%}</h2>
|
|
|
|
<form action="{% url 'hosting:signup' %}" method="post" class="form" novalidate>
|
|
|
|
{% csrf_token %}
|
|
|
|
{% for field in form %}
|
|
|
|
{% bootstrap_field field show_label=False %}
|
|
|
|
{% endfor %}
|
|
|
|
{% buttons %}
|
|
|
|
<button type="submit" class="btn btn-block btn-info">
|
|
|
|
{% trans "Sign up"%}
|
|
|
|
</button>
|
|
|
|
{% endbuttons %}
|
|
|
|
</form>
|
|
|
|
<div class="auth-footer">
|
|
|
|
<div class="text">
|
|
|
|
<span>{% trans "Already have an account ?"%}</span>
|
|
|
|
</div>
|
|
|
|
<div class="links">
|
|
|
|
<a class="unlink" href="{% url 'hosting:login' %}">{% trans "Login"%}</a>
|
|
|
|
</div>
|
2017-05-28 17:57:02 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-06-01 20:40:19 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2017-05-28 17:57:02 +00:00
|
|
|
</div>
|
2016-04-23 07:22:44 +00:00
|
|
|
{% endblock %}
|