-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgotPassword.html
More file actions
66 lines (58 loc) · 2.92 KB
/
forgotPassword.html
File metadata and controls
66 lines (58 loc) · 2.92 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<!--<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />-->
<!-- Material Design fonts -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<!-- Bootstrap -->
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Bootstrap Material Design -->
<link rel="stylesheet" type="text/css" href="css/bootstrap-material-design.css">
<link rel="stylesheet" type="text/css" href="css/ripples.min.css">
<title>CellCheck - Forgot Password</title>
<style type="text/css">
* { margin: 0; padding: 0; }
p { margin-top: 5%;padding: 0px; }
.left { position: absolute; left: 0; top: 0; width: 70%; height: 100%; background-image:url("images/index.jpg"); background-size:100% 100%; vertical-align: middle;}
.left-inner{width: 70%; margin: 0 auto;}
.center{position:absolute; top:33%; width: 70%}
.right { position: absolute; right: 0; top: 0; width: 30%; height: 100%; background: #49B24E}
.center2{position:absolute; top:30%; width: 70%}
</style>
</head>
<body>
<div class = "left">
<div class = "left-inner">
<div class = "center">
<h1 style="color:white">Forgot your password?</h1>
<h3 style="color:#d3d3d3">No problem.</h3>
<p style="color:#d3d3d3"; >To reset your password, please enter your Cellcheck username. Cellcheck will send the password reset instructions to the email address for this account. If you don't know the username or your email address is no longer valid, please Contact Us for further assistance.</p>
<a href="register.html" class="btn btn-raised btn-success">I need an account</a>
</div>
</div>
</div>
<div class = "right">
<div class = "left-inner">
<div class = "center2">
<h3 style="color: white">Account Info</h3>
<form action="forgotPassword.php" method="post">
<div class="form-group label-floating">
<label class="control-label" for="fname">First Name</label>
<input class="form-control" name="fname" type="text">
</div>
<div class="form-group label-floating">
<label class="control-label" for="lname">Last Name</label>
<input class="form-control" name="lname" type="text">
</div>
<div class="form-group label-floating">
<label class="control-label" for="email">Email</label>
<input class="form-control" name="email" type="text">
</div>
<input type="submit" class="btn btn-raised btn-default">
</form>
</div>
</div>
</div?
</body>
</html>