-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnew-password.html
More file actions
36 lines (35 loc) · 1.4 KB
/
new-password.html
File metadata and controls
36 lines (35 loc) · 1.4 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
<html>
<head>
<meta name="viewport" content="width=device-width"/>
<link href="//cdnjs.cloudflare.com/ajax/libs/materialize/0.100.1/css/materialize.min.css" rel="stylesheet"/>
<link href="//fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"/>
<link href="dist/css/main.css" rel="stylesheet"/>
</head>
<body>
<div class="main">
<div class="page--full row">
<div class="col m12 s12">
<div class="form--input">
<div class="form--title">
<h1 class="headline">Create new password</h1>
<h3 class="subhead">Get it a try before you buy</h3>
</div>
<div class="input-field">
<label for="new-password">Password</label>
<input class="validate" id="new-password" type="password"/>
</div>
<div class="input-field">
<label for="confirm-password">Confirm Password</label>
<input class="validate" id="confirm-password" type="password"/>
</div>
</div>
<div class="form--button waves-effect waves-light btn-large">Save</div>
</div>
</div>
</div>
<script src="dist/scripts/jquery.min.js"></script>
<script src="dist/scripts/hideshowpassword.min.js"></script>
<script src="dist/scripts/materialize.min.js"></script>
<script src="dist/scripts/main.js"></script>
</body>
</html>