-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsignup.html
More file actions
63 lines (54 loc) · 2.76 KB
/
signup.html
File metadata and controls
63 lines (54 loc) · 2.76 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/index.css">
<title>New Members Signup - Github User Breakdown</title>
</head>
<body>
<header class='header-navigation'>
<div class='header'>
<a href='index.html'><img src='images/logo.png' alt='Our logo'></a>
<h2>Github User Breakdown</h2>
</div>
</a>
<div class='search-bar'>
<button class='header-sign-up'><a href='signup.html'>Sign Up</a></button>
<button class='header-sign-in'><a href='login.html'>Log In</a></button>
</div>
</header>
<div class="sign-plans">
<div class="plan">
</div>
<div class="plan">
</div>
</div>
<div class="container">
<div class="contact-form">
<h2>Join Github User Breakdown:</h2>
<form>
<label>User</label>
<input name="user" type="text" placeholder="Type user name" required>
<label>Email</label>
<input name="email" type="email" placeholder="Type email" required>
<label>Password (8 characters minimum)</label>
<input name="passwd" type="password" placeholder="Type password" pattern=".{8,}" required>
<label>Confirm Password (passwords must be identical)</label>
<input name="conf-passwd" type="password" placeholder="Confirm password" pattern=".{8,}" required>
<input type="checkbox" name="free_account" value="free" checked required>Join for FREE!<br>
<input type="checkbox" name="annual_account" value="annual">I am interested in the annual account!<br>
<input id="submit" name="submit" type="submit" onClick="parent.location='#'" value="Submit">
</form>
</div>
<p class="signup login"><a href="login.html">Already a member?</a></p>
</div>
<footer class='footer-content'>
<ul class='footer-content-list'>
<li class='footer-content-item'><a href='index.html'>Search</a></li><li class='footer-content-item'><a href='privacy.html'>Privacy</a></li><li class='footer-content-item'><a href='terms.html'>Terms</a></li><li class='footer-content-item'><a href='contact.html'>Contact</a></li><li class='footer-content-item'><a href='about.html'>About</a></li>
</ul>
<p class='copyright'>Copyright 2019 ThomasSmith Dev</p>
</footer>
</body>
</html>