-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgotpassword.html
114 lines (98 loc) · 4.28 KB
/
forgotpassword.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>EzQuiz Home</title>
<link rel="stylesheet" type="text/css" href="css/submenu.css">
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/heroic-features.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
</head>
<body ng-app="myApp" ng-controller="forgotPasswordCtrl">
<!-- <ul>
<li ng-repeat="x in students">{{x.email}}</li>
</ul> -->
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html">Trang thi trắc nghiệm trực tuyến</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto nav">
<li class="nav-item active">
<a class="nav-link" href="index.html">Trang chủ
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">Giới thiệu</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Liên hệ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Hỏi dáp</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Tài khoản</a>
<ul class="sub-menu">
<li><a href="register.html">Ðăng ký</a></li>
<li><a href="login.html">Ðăng nhập</a></li>
<li><a href="forgotpassword.html">Quên mật khẩu</a></li>
<li><a href="login.html">Đăng xuất</a></li>
<li><a href="passwordchange.html">Đổi mật khẩu</a></li>
<li><a href="profile.html">Cập nhật tài khoản</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<!-- Page Content -->
<div class="container" style="padding-top: 100px;padding-bottom: 100px;">
<div class="row">
<div class="col-sm-9 col-md-7 col-lg-5 mx-auto">
<div class="card card-signin my-5">
<div class="card-body">
<h5 class="card-title text-center">Forgot your password ?</h5>
<form class="form-signin" ng-submit="submit()">
<div class="form-label-group">
<p style="padding-left:10px">Enter your e-mail:</p>
<input type="email" id="inputEmail" ng-model="inputEmail" class="form-control" placeholder="Email address" required autofocus oninput="showCode()">
</div>
<div style="padding-left:10px;margin-bottom:50px;color:#495057;display:none;" id="code">
<b><p class="text-center">
{{randomCode()}}
</p></b>
Enter your code:
<input type="text" id="yourcode" ng-model="yourcode" class="form-control" required oninput="showCode()">
</div>
<button class="btn btn-lg btn-primary btn-block text-uppercase" type="submit">Get your password</button>
<hr class="my-4">
<a class="btn btn-lg btn-block text-uppercase" href="login.html"></i>Have an account, Log in now!</a>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="py-5 bg-dark">
<div class="container">
<p class="m-0 text-center text-white">FM14 - ISC09 - Lập Trình Frontend Backend</p>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.7.8/angular.min.js"></script>
<script src="js/forgotpass.js"></script>
</body>
</html>