-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
45 lines (36 loc) · 955 Bytes
/
signup.html
File metadata and controls
45 lines (36 loc) · 955 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Sign up here to be notified on our launch progress!</title>
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body>
<header>
<ul>
<li> <a href=index.html>Home</a></li>
<li> <a href=signup.html>Sign Up</a></li>
<li> <a href=about-us.html>About Us</a></li>
</ul>
</header>
<h1> If you would like to be kept up to date on our launch progress, please fill out the form below!</h1>
<form name="get-notified" action="success.html" method="post">
<div>
<label>Name</label>
<input type="text" name="name">
</div>
<div>
<label>Email</label>
<input type="email" name="email">
</div>
<div>
<br>
<label>Tell us about yourself! (optional):</label>
<br>
<textarea name="about-yourself" rows="12" cols="40">We want to know more about you!</textarea>
</div>
<div>
<button type="submit">Submit your info</button>
</div>
</form>
</body>
</html>