-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
54 lines (48 loc) · 1.58 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
51
52
53
54
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>StackOverflow Lite</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://tos4christ.github.io/StackOverflow-Lite/signup-styles.css">
</head>
<body>
<div class="main-nav">
<ul class="nav">
<li class="name">StackOverflow Lite</li>
<li><a href="#">Home</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#signin-page" class="signin"> Sign in </a> <img class="signin-image" src="https://tos4christ.github.io/StackOverflow-Lite/signin.png"></li>
</ul>
</div>
<header>
<div>
<img src="https://tos4christ.github.io/StackOverflow-Lite/me.png" class="profile-image">
<h1> StackOverflow Lite Sign up page </h1>
</div>
</header>
<main class="flex">
<div class="card">
<h3>Sign Up</h3>
First Name <br>
<input type="text" > <br>
Last Name <br>
<input type="text"> <br>
Email <br>
<input type="email"> <br>
Password <br>
<input type="password"> <br>
<button type="submit">Submit</button>
</div>
</main>
<footer>
<ul>
<li><a href="#" class="social twitter">Twitter</a></li>
<li><a href="#" class="social linkedin">LinkedIn</a></li>
<li><a href="#" class="social github">Github</a></li>
</ul>
<p class="copyright">© 2018, StackOverflow-Lite</p>
</footer>
</body>
</html>