2016-07-19 06:07:49 +00:00
|
|
|
|
{% extends "nosystemd/base.html" %}
|
|
|
|
|
{% load staticfiles bootstrap3 i18n %}
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
|
|
<header>
|
|
|
|
|
<div class="header-content">
|
|
|
|
|
<div class="header-content-inner">
|
|
|
|
|
<div class="col-md-4 col-md-offset-4">
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% if messages %}
|
|
|
|
|
<ul class="list-unstyled">
|
|
|
|
|
{% for message in messages %}
|
|
|
|
|
<li>{{ message }}</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
{% block messages %}
|
|
|
|
|
{% if request.GET.logged_out %}
|
|
|
|
|
<div class="alert"> <!-- singular -->
|
|
|
|
|
<a class="close" data-dismiss="alert">×</a>
|
|
|
|
|
{% trans "You haven been logged out"%}
|
|
|
|
|
</div>
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-08-16 01:45:08 +00:00
|
|
|
|
<h2 class="section-heading form-heading">{% trans "Log in "%}</h2>
|
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
|
|
|
|
<form action="{% url 'nosystemd:login' %}" method="post" class="form" novalidate>
|
2016-07-19 06:07:49 +00:00
|
|
|
|
{% csrf_token %}
|
2016-07-29 05:17:34 +00:00
|
|
|
|
<input type="hidden" name="" value="{{ request.GET.next }}">
|
2016-07-19 06:07:49 +00:00
|
|
|
|
{% for field in form %}
|
|
|
|
|
{% bootstrap_field field show_label=False type='fields'%}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
<p>{{form.non_field_errors|striptags}}</p>
|
|
|
|
|
{% buttons %}
|
|
|
|
|
<button type="submit" class="btn btn-default">
|
|
|
|
|
{% trans "Login"%}
|
|
|
|
|
</button>
|
|
|
|
|
{% endbuttons %}
|
|
|
|
|
</form>
|
2016-08-16 01:45:08 +00:00
|
|
|
|
<span class="roboto-font">{% trans "Don't have an account yet ? "%}<a class="unlink" href="{% url 'nosystemd:signup' %}">{% trans "Sign up"%}</a></span>
|
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
|
|
|
|
<br/>
|
2016-08-16 01:45:08 +00:00
|
|
|
|
<span> <a class="unlink roboto-font" href="{% url 'nosystemd:reset_password' %}">{% trans "Forgot your password ? "%}</a></span>
|
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
|
|
|
|
|
|
|
|
|
|
2016-07-19 06:07:49 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|