-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathindex.html
33 lines (28 loc) · 1016 Bytes
/
index.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
<!DOCTYPE html>
<!--DO NOT EDIT THIS FILE-->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Google Devs</title>
<link href="node_modules/normalize.css" rel="stylesheet" type="text/css"/>
<link href="style.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div class="container">
<h1>Sign In</h1>
<form name="sign_in" action="#" method="put">
<input type="text" placeholder="Email"><br />
<input type="password" placeholder="Password"><br />
<input type="submit" value="Sign In">
</form>
<ul class="errors">
<li>Please enter a valid email address</li>
<li>Your password should be at least 8 characters long</li>
<li>Your password should contain at least one capital letter</li>
<li>Your password should contain at least one number (0-9)</li>
</ul>
</div>
<script src="http://code.jquery.com/jquery-1.11.0.min.js" type="text/javascript"></script>
<script src="validator.js" type="text/javascript"></script>
</body>
</html>