blob: 5a24448680b1af3525fc68fbef2359bc3d1cedbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{% extends 'registration/base_simple.html' %}
{% block title %}Login{% endblock %}
{% block content %}
<div class="row">
<div class="col l4 offset-l4 m8 offset-m2 s12">
<div class="card">
<div class="card-content">
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<br>
<a href={% url 'password_reset' %}>Password dimenticata</a>
<br>
<br>
<a href={% url 'oauth_login' %} class="btn waves-effect waves-light {{color}}">OAuth</a>
<button class="btn waves-effect waves-light {{color}}" type="submit">Login</button>
</form>
</div>
</div>
</div>
</div>
{% endblock %}
|