source: firmaeventos/users/templates/users_forgot.html @ 2f56f4e

Last change on this file since 2f56f4e was bf47591, checked in by Leonel Hernandez <leonelphm@…>, 7 years ago

Inicializando Proyecto

  • Property mode set to 100644
File size: 1.9 KB
Line 
1{% extends 'base.html' %}
2{% load staticfiles %}
3{% block title %}'=Django-Forgot Password='{% endblock title %}
4{% block extras_constantes %}
5{% endblock extras_constantes %}
6{% block extras_css %}
7<link rel="stylesheet" href="{% static 'css/custom_login.css' %}">
8<link rel="stylesheet" href="{% static 'css/font-awesome.min.css' %}">
9<link href="{% static 'css/font_varelaround.css'  %}" rel='stylesheet' type='text/css'>
10{% endblock extras_css %}
11{% block extras_js %}
12<script src="{% static 'js/jquery.validate.min.js' %}"></script>
13<script type="text/javascript">
14</script>
15{% endblock extras_js %}
16{% block contenido %}
17<!-- Where all the magic happens -->
18<!-- FORGOT PASSWORD FORM -->
19<div class="text-center" style="padding:50px 0">
20    <div class="logo">Forgot Password</div>
21    <!-- Main Form -->
22    <div class="login-form-1">
23        <form id="forgot-password-form" class="text-left" method="post">
24            <div class="etc-login-form">
25                <p>When you fill in your registered email address, you will be sent instructions on how to reset your password.</p>
26            </div>
27            <div class="login-form-main-message"></div>
28            <div class="main-login-form">
29                <div class="login-group">
30                    <div class="form-group">
31                        {% csrf_token %}
32                        {{ form.email }}
33                    </div>
34                </div>
35                <button type="submit" class="login-button"><i class="fa fa-chevron-right"></i></button>
36            </div>
37            <div class="etc-login-form">
38                <p>already have an account? <a href="{% url 'users:login'%}">login here</a></p>
39                <p>new user? <a href="#">create new account</a></p>
40            </div>
41        </form>
42    </div>
43    <!-- end:Main Form -->
44</div>
45{% endblock contenido %}
46{% block custom_js%}
47<script src="{% static 'js/custom_login.js' %}"></script>
48{% endblock custom_js%}
Note: See TracBrowser for help on using the repository browser.