-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgot-password.html
More file actions
143 lines (118 loc) · 5.5 KB
/
forgot-password.html
File metadata and controls
143 lines (118 loc) · 5.5 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html class="no-js css-menubar" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimal-ui">
<meta name="description" content="bootstrap material admin template">
<meta name="author" content="">
<title>Recuperação da password?</title>
<link rel="apple-touch-icon" href="assets/images/apple-touch-icon.png">
<link rel="shortcut icon" href="assets/images/favicon.ico">
<!-- Estilos fusion -->
<link rel="stylesheet" href="scss/login.css">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-extend.min.css">
<link rel="stylesheet" href="assets/css/site.min.css">
<!-- Plugins -->
<link rel="stylesheet" href="vendor/animsition/animsition.css">
<link rel="stylesheet" href="vendor/asscrollable/asScrollable.css">
<link rel="stylesheet" href="vendor/switchery/switchery.css">
<link rel="stylesheet" href="vendor/intro-js/introjs.css">
<link rel="stylesheet" href="vendor/slidepanel/slidePanel.css">
<link rel="stylesheet" href="vendor/flag-icon-css/flag-icon.css">
<link rel="stylesheet" href="vendor/waves/waves.css">
<link rel="stylesheet" href="assets/examples/css/pages/forgot-password.css">
<!-- Fonts -->
<link rel="stylesheet" href="fonts/material-design/material-design.min.css">
<link rel="stylesheet" href="fonts/brand-icons/brand-icons.min.css">
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Roboto:300,400,500,300italic'>
<!--[if lt IE 9]>
<script src="vendor/html5shiv/html5shiv.min.js"></script>
<![endif]-->
<!--[if lt IE 10]>
<script src="vendor/media-match/media.match.min.js"></script>
<script src="vendor/respond/respond.min.js"></script>
<![endif]-->
<!-- Scripts -->
<script src="vendor/breakpoints/breakpoints.js"></script>
<script>
Breakpoints();
</script>
</head>
<body class="animsition fbg page-forgot-password layout-full">
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Page -->
<div class="page vertical-align text-center" data-animsition-in="fade-in" data-animsition-out="fade-out">
<div class="page-content vertical-align-middle">
<div class="panel">
<div class="panel-body">
<h2>Esqueceu a sua palavra-passe?</h2>
<br/>
<p>Insira o seu e-mail do registo.</p>
<form method="post" role="form" autocomplete="off">
<div class="form-group form-material floating" data-plugin="formMaterial">
<input type="email" class="form-control empty" id="inputEmail" name="email">
<label class="floating-label" for="inputEmail">Email</label>
</div>
<div class="form-group">
<a href="login.html"><button type="submit" class="btn btn-primary btn-block">Recuperar Password</button></a>
</div>
</form>
</div>
</div>
<footer class="page-copyright">
<p>© 2018. made by Webexperts</p>
</footer>
</div>
</div>
<!-- End Page -->
<!-- Core -->
<script src="vendor/babel-external-helpers/babel-external-helpers.js"></script>
<script src="vendor/jquery/jquery.js"></script>
<script src="vendor/popper-js/umd/popper.min.js"></script>
<script src="vendor/bootstrap/bootstrap.js"></script>
<script src="vendor/animsition/animsition.js"></script>
<script src="vendor/mousewheel/jquery.mousewheel.js"></script>
<script src="vendor/asscrollbar/jquery-asScrollbar.js"></script>
<script src="vendor/asscrollable/jquery-asScrollable.js"></script>
<script src="vendor/ashoverscroll/jquery-asHoverScroll.js"></script>
<script src="vendor/waves/waves.js"></script>
<!-- Plugins -->
<script src="vendor/switchery/switchery.js"></script>
<script src="vendor/intro-js/intro.js"></script>
<script src="vendor/screenfull/screenfull.js"></script>
<script src="vendor/slidepanel/jquery-slidePanel.js"></script>
<!-- Scripts -->
<script src="js/Component.js"></script>
<script src="js/Plugin.js"></script>
<script src="js/Base.js"></script>
<script src="js/Config.js"></script>
<script src="assets/js/Section/Menubar.js"></script>
<script src="assets/js/Section/GridMenu.js"></script>
<script src="assets/js/Section/Sidebar.js"></script>
<script src="assets/js/Section/PageAside.js"></script>
<script src="assets/js/Plugin/menu.js"></script>
<script src="js/config/colors.js"></script>
<script src="assets/js/config/tour.js"></script>
<script>Config.set('assets', 'assets');</script>
<!-- Page -->
<script src="assets/js/Site.js"></script>
<script src="js/Plugin/asscrollable.js"></script>
<script src="js/Plugin/slidepanel.js"></script>
<script src="js/Plugin/switchery.js"></script>
<script src="js/Plugin/material.js"></script>
<script>
(function(document, window, $){
'use strict';
var Site = window.Site;
$(document).ready(function(){
Site.run();
});
})(document, window, jQuery);
</script>
</body>
</html>