-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (38 loc) · 1.03 KB
/
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
34
35
36
37
38
39
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>User Registration</title>
<script src="js/modernizr.custom.43590.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<section>
<header>
<hgroup>
<h1>CREATE AN ACCOUNT</h1>
<h6>It's Fast, Easy and Free!</h6>
</hgroup>
</header>
<form action="account.html" method="post" class="registration">
<fieldset>
<div class="field">
<input type="email" id="email" name="email" placeholder="Email" required />
</div>
<div class="field">
<input type="password" id="password" name="password" placeholder="Password" required />
</div>
</fieldset>
<fieldset class="actions">
<a href="login.html">Already have an account?</a>
<div class="buttons">
<button type="reset">cancel</button>
<button type="submit">DONE</button>
</div>
</fieldset>
</form>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.js"></script>
<script src="js/script.js"></script>
</body>
</html>