-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsignup.html
More file actions
221 lines (195 loc) · 6.94 KB
/
signup.html
File metadata and controls
221 lines (195 loc) · 6.94 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
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<head>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.8.4/semantic.min.css">
<style type="text/css">
.hidden.menu {
display: none;
}
.masthead.segment {
min-height: 700px;
padding: 1em 0em;
}
.masthead .logo.item img {
margin-right: 1em;
}
.masthead .ui.menu .ui.button {
margin-left: 0.5em;
}
.masthead h1.ui.header {
margin-top: 3em;
margin-bottom: 0em;
font-size: 4em;
font-weight: normal;
}
.masthead h2 {
font-size: 1.7em;
font-weight: normal;
}
.ui.vertical.stripe {
padding: 8em 0em;
}
.ui.vertical.stripe h3 {
font-size: 2em;
}
.ui.vertical.stripe .button + h3,
.ui.vertical.stripe p + h3 {
margin-top: 3em;
}
.ui.vertical.stripe .floated.image {
clear: both;
}
.ui.vertical.stripe p {
font-size: 1.33em;
}
.ui.vertical.stripe .horizontal.divider {
margin: 3em 0em;
}
.quote.stripe.segment {
padding: 0em;
}
.quote.stripe.segment .grid .column {
padding-top: 5em;
padding-bottom: 5em;
}
.footer.segment {
padding: 5em 0em;
}
.secondary.pointing.menu .toc.item {
display: none;
}
@media only screen and (max-width: 700px) {
.ui.fixed.menu {
display: none !important;
}
.secondary.pointing.menu .item,
.secondary.pointing.menu .menu {
display: none;
}
.secondary.pointing.menu .toc.item {
display: block;
}
.masthead.segment {
min-height: 350px;
}
.masthead h1.ui.header {
font-size: 2em;
margin-top: 1.5em;
}
.masthead h2 {
margin-top: 0.5em;
font-size: 1.5em;
}
}
</style>
</head>
<body>
<div class="ui top fixed menu">
<a class="item" href="index.html">
<img src="img/logo.png">
</a>
<a class="item" href="index.html">Home</a>
</div>
<!-- Page Contents -->
<div class="pusher">
<div style="padding-left:5%; padding-right:5%;" class="ui vertical stripe segment">
<div class="ui top attached tabular menu">
<div class="active item" data-tab="one">Sign Up</div>
<div class="item" data-tab="two">Log In</div>
<div class="item" data-tab="three">Forgot Password</div>
</div>
<div class="ui bottom attached active tab segment" data-tab="one">
<form class="ui form">
<div class="field">
<label>First Name</label>
<input type="text" name="first-name" placeholder="First Name">
</div>
<div class="field">
<label>Last Name</label>
<input type="text" name="last-name" placeholder="Last Name">
</div>
<div class="field">
<label>Email</label>
<input type="text" name="email" placeholder="Email">
</div>
<div class="ui form info">
<div class="field">
<label>Password</label>
<input type="password" placeholder="Password">
</div>
<div class="ui info message">
<div class="header">Requirements</div>
<ul class="list">
<li>Password must contain at least <b>12 characters</b></li>
<li>Password must contain at least <b>1 special character</b></li>
<li>Password must contain at least <b>1 number</b></li>
</ul>
</div>
</div>
<div class="field">
<label>Re-enter Password</label>
<input type="password" placeholder="Re-enter Password">
</div>
<div class="field">
<div class="ui checkbox">
<input type="checkbox" tabindex="0" class="hidden">
<label>I agree to the Terms and Conditions</label>
</div>
</div>
<button class="ui blue button" type="submit">Sign Up</button>
</form>
</div>
<div class="ui bottom attached tab segment" data-tab="two">
<form class="ui form">
<div class="field">
<label>Email</label>
<input type="text" name="email" placeholder="Email">
</div>
<div class="field">
<label>Password</label>
<input type="password" placeholder="Password">
</div>
<button class="ui green button" type="submit">Log In</button>
</form>
</div>
<div class="ui bottom attached tab segment" data-tab="three">
<form class="ui form">
<div class="field">
<label>Email</label>
<input type="text" name="email" placeholder="Email">
</div>
<button class="ui purple button" type="submit">Send Password Recovery Email</button>
</form>
</div>
</div>
</div>
<div class="ui blue inverted vertical footer segment">
<div class="ui container">
<div class="ui stackable inverted divided equal height stackable grid">
<div class="three wide column">
<h4 class="ui inverted header">About</h4>
<div class="ui inverted link list">
<a href="#" class="item">Sitemap</a>
<a href="#" class="item">Contact</a>
</div>
</div>
<div class="three wide column">
<h4 class="ui inverted header">Services</h4>
<div class="ui inverted link list">
<a href="#" class="item">Athletic Trainer</a>
<a href="#" class="item">Workouts</a>
<a href="#" class="item">Routine</a>
<a href="#" class="item">Diet</a>
</div>
</div>
<div class="seven wide column">
<h4 class="ui inverted header">Stephen Nwaukoni</h4>
</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.8.4/semantic.min.js"></script>
<script>
$('.tabular.menu .item').tab();
$('.progress').progress();
</script>
</body>