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 pathauth.html
More file actions
48 lines (45 loc) · 1.75 KB
/
auth.html
File metadata and controls
48 lines (45 loc) · 1.75 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Lipsync Beta - Auth</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">
Sign In
<a href="#">Register</a>
</div>
<label data-error="Wrong email" class="form__label form__label--auth">
Email
<input type="text" class="form__text-input" />
</label>
<label data-error="Wrong email" class="form__label form__label--auth">
Password
<input type="password" class="form__text-input" />
</label>
<div class="auth__keep-me">
<span class="checkbox js-checkbox">
<input type="checkbox" value="" />
</span>
Keep me signed in
</div>
<input class="auth__submit" type="submit" value="Sign In" />
<a href="#" class="auth__forgot">Forgot Password?</a>
<div class="auth__chat">
<a target="_blank" href="https://chat.center/lipsync?color=28B6FF">Chat with support</a>
</div>
<div class="auth__copy">
Copyright 2016 - Lipsync 苏ICP备16032445号
</div>
</form>
</div>
</div>
</body>
<script src="js/script.js"></script>
</html>