-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path8. address.html
178 lines (137 loc) · 6.5 KB
/
8. address.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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Registration Form</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css" integrity="sha384-PmY9l28YgO4JwMKbTvgaS7XNZJ30MK9FAZjjzXtlqyZCqBY6X6bXIkM++IkyinN+" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/fontawesome-5.css">
<link rel="stylesheet" type="text/css" href="css/templates.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id=registrationForm>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<img src="img/usa-hockey-logo.svg">
</div>
<h1>
2018-2019
<small>Season Registration</small>
</h1>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Questions</a></li>
<li><a href="#">Support</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav><!-- navbar -->
<div id="steps-bar">
<div class="steps-container">
<div class="step active">
<label class="number">STEP 1</label>
<i class="far fa-file-alt"></i>
<label class="name">Information</label>
</div><!-- step -->
<div class="step-bar active">
<div class="step-progress p-8"></div>
</div><!-- step-bar -->
<div class="step">
<label class="number">STEP 2</label>
<i class="far fa-thumbs-up"></i>
<label class="name">Review</label>
</div><!-- step -->
<div class="step-bar">
<div class="step-progress"></div>
</div><!-- step-bar -->
<div class="step">
<label class="number">STEP 3</label>
<i class="far fa-credit-card"></i>
<label class="name">Payment</label>
</div><!-- step -->
<div class="step-bar">
<div class="step-progress"></div>
</div><!-- step-bar -->
<div class="step last">
<label class="number">STEP 4</label>
<i class="fas fa-print"></i>
<label class="name">Confirmation</label>
</div><!-- step -->
</div><!-- steps-container -->
</div><!-- steps-bar -->
<div class="container">
<div class="row question-icon">
<i class="fas fa-home"></i>
</div>
<div class="row">
<div class="col-md-12">
<h2>Where does the participant's live?</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="form-group">
<label for="exampleInputPassword1">Address <span class="required">*</span></label>
<div class="input-group">
<span class="input-group-addon"><i class="fas fa-map-signs"></i></span>
<input type="text" class="form-control input-lg" placeholder="e.g. 580 Whiff Oaf Lane">
</div>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="exampleInputPassword1">City <span class="required">*</span></label>
<input type="text" class="form-control input-lg" placeholder="e.g. Orlando">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="exampleInputPassword1">State <span class="required">*</span></label>
<input type="text" class="form-control input-lg" placeholder="e.g. Florida">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="exampleInputPassword1">Country <span class="required">*</span></label>
<select class="form-control input-lg" placeholder="e.g. USA">
<option>United States</option>
<option>Canada</option>
</select>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="exampleInputPassword1">Zip Code <span class="required">*</span></label>
<input type="text" class="form-control input-lg" placeholder="e.g. Zip Code">
</div>
</div>
</div>
<div class="row">
<a href="7. citizenship.html"><div class="btn btn-link">Previous</div></a>
<a href="9. contact.html"><div class="btn btn-primary">Next</div></a>
</div>
</div><!-- container -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha384-nvAa0+6Qg9clwYCGGPpDQLVpLNn0fRaROjHqs13t4Ggj3Ez50XnGQqc/r8MhnRDZ" crossorigin="anonymous"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js" integrity="sha384-vhJnz1OVIdLktyixHY4Uk3OHEwdQqPppqYR8+5mjsauETgLOcEynD9oPHhhz18Nw" crossorigin="anonymous"></script>
</body>
</html>