-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (89 loc) · 5.16 KB
/
index.html
File metadata and controls
114 lines (89 loc) · 5.16 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!doctype html>
<html lang="en">
<head>
<title>Online Registration Form</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300,500|Raleway:400,500,900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
</head>
<body>
<header id="topbar">
<div class="container txtcenter">
<h1>The Code Review</h1>
</div>
</header>
<main>
<div class="container">
<div class="window">
<div class="frame">
<div class="icon-close"><i class="fa fa-times" aria-hidden="true"></i></div>
<div class="icon-mini"><i class="fa fa-minus" aria-hidden="true"></i></div>
<div class="icon-max"><i class="fa fa-sort" aria-hidden="true"></i></div>
</div>
<header class="txtcenter">
<h2>Signup for our newsletter</h2>
<p>Get the latest news on how your code is doing right in your inbox
</header>
<form action="index.html" method="post">
<fieldset id="login-info">
<legend>Login Information</legend>
<label for="username">Username</label>
<input type="text" id="username" placeholder="Choose a Username" name="user_username" required>
<label for="password">Password</label>
<input type="password" id="password" placeholder="Choose a password" name="user_password" required>
<label for="security">Security question</label>
<select id="security" name="user_questions">
<option value="">What is the name of your first pet?</option>
<option value="liverpool">What is your mother's maiden name?</option>
<option value="liverpool">What is your first primary school?</option>
<option value="liverpool">What is your first car?</option>
</select>
<label for="security_answer">Security question answer</label>
<input type="text" id="security_answer" placeholder="Your Answer to the question" name="user_anser">
</fieldset>
<fieldset id="contact-info">
<legend>Contact Information</legend>
<label for="fullname">Full Name</label>
<input type="text" id="fullname" placeholder="required" name="user_fullname" required pattern="[A-Z-a-z]{1}[a-z-0-9]+\s[A-Z-a-z]{1}[a-z-0-9]+">
<label for="email">Email Address</label>
<input type="email" id="email" placeholder="required" name="user_email" required>
<label for="tel">Phone Number</label>
<input type="tel" id="tel" placeholder="e.g. +(44) 803 308 1286" name="user_tel">
<label for="address">Street Address</label>
<input type="text" id="address" placeholder="Enter your First Line of your address" name="user_address">
<label for="city">City</label>
<input type="text" id="city" placeholder="Enter the name of your city." name="user_city">
<label for="state">State</label>
<select id="state" name="user_state">
<option value="london">London</option>
<option value="liverpool">Liverpool</option>
</select>
<label for="zip">Zip Code</label>
<input type="text" id="zip" placeholder="Enter your Zip Code" name="user_zip">
</fieldset>
<fieldset id="newsletter">
<legend>Newsletter</legend>
<h3 class="newsletter">Select the newsletters you would like to receive</h3>
<input type="checkbox" id="html" value="newsletter_html" name="user_htmlNews"><label class="inlnbk" for="html">HTML News</label><br>
<input type="checkbox" id="css" value="newsletter_css" name="user_cssNews"><label class="inlnbk" for="css">CSS News</label><br>
<input type="checkbox" id="javascript" value="newsletter_javascript" name="user_javascriptNews"><label class="inlnbk" for="javascript">Javascript News</label><br>
<h3 class="newsletter-format">Newsletter format (Choose one)</h3>
<input type="radio" id="html_format" value="html_format" name="user_news_format"><label class="inlnbk" for="html_format">HTML</label><br>
<input type="radio" id="text_format" value="html_format" name="user_news_format"><label class="inlnbk" for="text_format">Plain text</label>
<label class="other-topics" for="other_topics">Other topics you'd like to hear about</label>
<textarea id="other_topics" name="user_other_topics" rows="10"></textarea>
</fieldset>
<div class="submit-button-area">
<button type="submit">Submit</button>
</div>
<div class="frame">
<div class=""><p>Copyright The Code Review</p></div>
</div>
</form>
</div>
</div>
</main>
</body>
</html>