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
|
|
|
{% extends "nosystemd/base.html" %}
|
|
|
|
{% load staticfiles bootstrap3%}
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<header>
|
|
|
|
<div class="header-content">
|
|
|
|
<div class="header-content-inner">
|
|
|
|
<div class="intro-auth intro-signup">
|
|
|
|
<div class="container">
|
|
|
|
<div class="col-md-3 col-sm-4 col-xs-4"> </div>
|
|
|
|
<div class="col-md-4 col-sm-6 col-xs-6">
|
|
|
|
<div class="intro-message">
|
|
|
|
<h2 class="section-heading">{% trans "Sign up"%}</h2>
|
|
|
|
|
|
|
|
<form action="{% url 'nosystemd:signup' %}" method="post" class="form" novalidate>
|
2016-07-29 05:17:34 +00:00
|
|
|
<input type="hidden" name="next" value="{{ request.GET.next }}">
|
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
|
|
|
{% csrf_token %}
|
|
|
|
{% for field in form %}
|
|
|
|
{% bootstrap_field field show_label=False %}
|
|
|
|
{% endfor %}
|
|
|
|
{% buttons %}
|
|
|
|
<button type="submit" class="btn btn-default">
|
|
|
|
{% trans "Sign up"%}
|
|
|
|
</button>
|
|
|
|
{% endbuttons %}
|
|
|
|
</form>
|
|
|
|
<span>{% trans "Already have an account ?"%} <a class="unlink" href="{% url 'nosystemd:login' %}">{% trans "Login"%}</a></span>
|
|
|
|
<ul class="list-inline intro-social-buttons">
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|