-
Notifications
You must be signed in to change notification settings - Fork 16
/
lost-password.html
59 lines (47 loc) · 1.54 KB
/
lost-password.html
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
<!doctype html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta charset="UTF-8">
<title>Document</title>
<!--styles-->
<link rel="stylesheet" href="assets/styles/main.css">
<!--scripts-->
<script src="assets/scripts/jquery-1.12.2.min.js"></script>
<script src="https://cdn.ckeditor.com/4.5.7/basic/ckeditor.js"></script>
<script src="assets/scripts/admin.js"></script>
</head>
<body>
<!--lost password screen-->
<div class="login-screen">
<!--login logo-->
<div class="login-logo">
<a href="#">
<img src="assets/images/logo.png" alt="">
</a>
</div>
<div class="message info">
buraya bir takım atarlı sözler gelecek.. unutmuş ya parolasını eşek yardır yaren..
</div>
<form action="">
<ul>
<li>
<label for="username_or_email">Username or E-mail</label>
<input type="text" id="username_or_email">
</li>
<li>
<button type="submit">Send</button>
</li>
</ul>
</form>
<div class="login-links">
<a href="#" class="lost-password">
Maybe login?
</a>
<a href="#">
<span class="fa fa-long-arrow-left"></span> Back to the future?
</a>
</div>
</div>
</body>
</html>