-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path'
More file actions
42 lines (39 loc) · 2.51 KB
/
'
File metadata and controls
42 lines (39 loc) · 2.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{% extends 'pyquiz/base_static.html' %}
{% block page_styles %}
<link href="/static/css/bootstrap-social.css" rel="stylesheet" >
{% endblock page_styles %}
{% block title %}Sign In{% endblock title %}
{% block content %}
<div class="form-box form-box-static" id="login-box">
<div class="header">Sign In</div>
<form action="" method="POST">
{% csrf_token %}
<div class="body bg-gray">
{% if error.general %}
<div class="help-block with-errors general-errors">{{ error.general }}</div>
{% endif %}
<div class="form-group {% if error.general %} has-error {% endif %}">
<input type="email" name="username" class="form-control" placeholder="Email ID" required data-error="Bruh, that email address is invalid" />
<div class="help-block with-errors"></div>
</div>
<div class="form-group {% if error.general or error.username %} has-error {% endif %}">
<input type="password" name="password" class="form-control" placeholder="Password" data-minlength="6" required data-error="Minimum of 6 characters"/>
<div class="help-block with-errors"></div>
</div>
<div class="form-group">
<input type="checkbox" name="remember_me"/> Remember me
</div>
</div>
<div class="footer">
<button type="submit" class="btn bg-olive btn-block">Sign me in</button>
<p class="text-center" style="font-size:12px;" >or sign in with your existing accounts</p>
<a class="btn btn-social-icon btn-google-plus" href="/accounts/google/login/"><i class="fa fa-google-plus"></i></a>
<p><a href="{% url 'forgot-password' %}">I forgot my password</a></p>
<a href="{% url 'register' %}" class="text-center">Request a new membership</a>
</div>
</form>
<div class="margin text-center copyrights">
<span>© 2014 Vivek Soundrapandi</span>
</div>
</div>
{% endblock content %}