-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.html
157 lines (137 loc) · 3.5 KB
/
register.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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Register - Styles Conference</title>
<link rel="stylesheet" href="stylesheets/style4.css" />
<link
rel="stylesheet"
href="http://fonts.googleapis.com/css?family=Lato:100,300,400"
/>
</head>
<body>
<!-- Header -->
<header class="primary-header container group">
<h1 class="logo">
<a href="index.html"
>Styles <br />
Conference</a
>
</h1>
<h3 class="tagline">August 24–26th — Chicago, IL</h3>
<nav class="nav primary-nav">
<ul>
<li><a href="index.html">Home</a></li>
<!--
-->
<li><a href="speakers.html">Speakers</a></li>
<!--
-->
<li><a href="schedule.html">Schedule</a></li>
<!--
-->
<li><a href="venue.html">Venue</a></li>
<!--
-->
<li><a href="register.html">Register</a></li>
</ul>
</nav>
</header>
<!-- Lead -->
<section class="row-alt">
<div class="lead container">
<h1>Register</h1>
<p>
Every year we aim to have an unbelievable time, and this year
we’d love it for you to join us. Conference passes only cost
$99, one of the best values you’ll find.
</p>
</div>
</section>
<!-- Form -->
<section class="row">
<div class="grid">
<section class="col-2-3">
<h2>Purchase a Conference Pass</h2>
<h5>$99 per Pass</h5>
<p>
Purchase your Styles Conference pass using the form to the right.
Multiple passes may be purchased within the same order, so feel free
to bring a friend or two along. Once your order is finished
we’ll follow up and provide a receipt for your purchase. See
you soon!
</p>
<h4>Why Attend?</h4>
<ul class="why-attend">
<li>Over twenty world-class speakers</li>
<li>
One full day of workshops and two full days of presentations
</li>
<li>Hosted at The Chicago Theatre, a historical landmark</li>
<li>August in Chicago is simply amazing</li>
</ul>
</section>
<!--
-->
<form class="col-1-3" action="#" method="post">
<fieldset class="register-group">
<label>
Name
<input type="text" name="name" placeholder="Full name" required />
</label>
<label>
Email
<input
type="email"
name="email"
placeholder="Email address"
required
/>
</label>
<label>
Number of Passes
<select name="quantity" required>
<option value="1" selected>1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</label>
<label>
Comments
<textarea name="comments"></textarea>
</label>
</fieldset>
<input
type="submit"
name="submit"
value="Purchase"
class="btn btn-default"
/>
</form>
</div>
</section>
<!-- Footer -->
<footer class="primary-footer container group">
<small>© Styles Conference</small>
<nav class="nav">
<ul>
<li><a href="index.html">Home</a></li>
<!--
-->
<li><a href="speakers.html">Speakers</a></li>
<!--
-->
<li><a href="schedule.html">Schedule</a></li>
<!--
-->
<li><a href="venue.html">Venue</a></li>
<!--
-->
<li><a href="register.html">Register</a></li>
</ul>
</nav>
</footer>
</body>
</html>