This repository was archived by the owner on Feb 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgot-reset.html
More file actions
38 lines (35 loc) · 1.39 KB
/
forgot-reset.html
File metadata and controls
38 lines (35 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Lipsync Beta - Registration</title>
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="wrapper">
<div class="auth">
<a href="/" class="auth__logo"></a>
<form class="auth__form" action="" method="post">
<div class="auth__title">
Reset your password
</div>
<div class="auth__desc">
Enter your new password for LipSync account
</div>
<label data-error="Wrong email" class="form__label form__label--auth form__label--width-info">
Password
<input value="123456" type="password" class="form__text-input" />
<div class="form__label-info">not less than 6 characters</div>
</label>
<label data-error="Wrong email" class="form__label form__label--auth">
Confirm new password
<input value="123456" type="password" class="form__text-input" />
</label>
<input class="auth__submit" type="submit" value="Save" />
</form>
</div>
</div>
</body>
<script src="js/script.js"></script>
</html>