-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsignup.html
50 lines (50 loc) · 1.46 KB
/
signup.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
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<title>Griffinry</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<h1>Griffinry</h1>
<span><img src="images/griffinry_logo.png" alt="Griffinry"></span>
<div class="user">
<form action="/login">
<label for="username">Username:</label>
<input type="text" name="username" />
<label for="password">Password:</label>
<input type="password" name="password" />
<input type="submit" value="Log in" />
</form>
<span>Log in with <a href="/google"><img src="images/google_signin.png" alt="Sign in with Google"></a></span>
</div>
</header>
<main>
<header class="hero">
</header>
<section>
<h1 class="visible">Create an Account</h1>
<div class="signup-container">
<form class="signup-form" action="/signup">
<label for="username">Username:</label>
<input type="text" name="username" />
<label for="email">Email:</label>
<input type="text" name="email" />
<label for="password">Password:</label>
<input type="password" name="password" />
<label for="dob">Date of Birth</label>
<input type="date" name="dob" />
<input type="submit" value="Sign up" />
</form>
<div>
<p>or</p>
<a href="/signup/google"><img src="images/google_signup.png" alt="Sign up with Google"></a>
</div>
</div>
</section>
</main>
<footer>
<small>© 2016 Jamaican Hopscotch Mafia</small>
</footer>
</body>
</html>