-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgot.html
46 lines (42 loc) · 1.63 KB
/
forgot.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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.ng-hide {
display: none !important;
}
</style>
<title data-ng-bind="title">Scheduler</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" />
<!-- CSS -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet" type="text/css" />
<link href="content/bootstrap.min.css" rel="stylesheet" />
<link href="content/font-awesome.css" rel="stylesheet" type="text/css" />
<link href="content/toastr.css" rel="stylesheet" />
<link href="app/css/ark.css" rel="stylesheet" type="text/css" />
<link href="app/css/login.css" rel="stylesheet" />
</head>
<body class="cover">
<div class="login-wrap">
<span class="brand">Scheduler</span>
<div class="panel">
<div class="panel-heading">
<h3 class="panel-title">Reset Password</h3>
</div>
<div class="panel-body">
<form action="login.html">
<div class="form-group">
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
<br />
<br />
<a href="login.html">Back to Sign In!</a>
</form>
</div>
</div>
</div>
</body>
</html>