forked from zafree/bootaide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
262 lines (242 loc) · 9.27 KB
/
form.html
File metadata and controls
262 lines (242 loc) · 9.27 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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>Form | Bootaide</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="bower_components/animate.css/animate.min.css" />
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.min.css" />
<link rel="stylesheet" href="bower_components/simple-line-icons/css/simple-line-icons.css" />
<link rel="stylesheet" href="bower_components/fontface-source-sans-pro/css/source-sans-pro.min.css"/>
<link rel="stylesheet" href="bower_components/bootstrapvalidator/dist/css/bootstrapValidator.min.css"/>
<link rel="stylesheet" href="dist/css/bootaide.min.css" />
</head>
<body>
<!--[if lt IE 10]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<header class="bg-white navbar-fixed-top box-shadow">
<div class="container">
<div class="navbar-header">
<button class="btn btn-link visible-xs pull-right m-r m-t-sm" type="button" data-toggle="collapse" data-target=".navbar-collapse">
<i class="fa fa-bars"></i>
</button>
<a href="." class="navbar-brand m-r-lg"><img src="img/logo.png" class="m-r-sm hide"><span class="h3 font-bold">Bootaide</span></a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="hide">
<a href=".">Home</a>
</li>
<li>
<a href="start.html">Start</a>
</li>
<li>
<a href="css.html">CSS</a>
</li>
<li>
<a href="typo.html">Typo</a>
</li>
<li>
<a href="components.html">Components</a>
</li>
<li>
<a href="ui-kit.html">UI Kit</a>
</li>
<li class="dropdown active">
<a href data-toggle="dropdown">Hello <i class="fa fa-caret-down"></i></a>
<!-- dropdown -->
<ul class="dropdown-menu w p-t">
<li>
<a href="typography.html">Typography</a>
</li>
<li>
<a href="progress-bar.html">Progress-bar</a>
</li>
<li>
<a href="seperators.html"> <span class="badge bg-success pull-right">NEW</span> <span>Separators</span> </a>
</li>
<li>
<a href="pricing.html">Pricing</a>
</li>
<li>
<a href="says.html">Says</a>
</li>
<li class="active">
<a href="form.html"> <span class="label bg-info pull-right">valid</span> Form </a>
</li>
<li>
<a href="blog.html">Blog</a>
</li>
<li>
<a href="parallax.html">Parallax</a>
</li>
<li>
<a href="chat.html"> <span class="badge bg-light pull-right">NEW</span> Chat</a>
</li>
<li>
<a href="photoswipe.html">PhotoSwipe</a>
</li>
<li>
<a href="video.html">Video</a>
</li>
<li class="divider"></li>
<li>
<a href="themeaide.html" target="_blank">Themeaide</a>
</li>
<li>
<a href="personal-bio.html">Personal Bio</a>
</li>
</ul>
<!-- / dropdown -->
</li>
</ul>
</div>
</div>
</header>
<section class="bg-info">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2 p-v-xxl text-center">
<h1 class="h1 m-t-xxl p-v-xxl">Forms</h1>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="m-b-lg p-h">
<h3 class="font-normal b-b b-a p-b-xs m-b"> <span class="pull-right">13</span> Forms </h3>
</div>
<div class="col-md-6">
<div class="m-b-lg p-h">
<h5 class="font-normal b-b b-a p-b-xs m-b"> Basic Form </h5>
<div class="m-t-lg">
<form>
<div class="form-group">
<label>Name</label>
<input type="text" class="form-control" placeholder="Name">
</div>
<div class="form-group">
<label>Email</label>
<input type="email" class="form-control" placeholder="Email">
</div>
<div class="form-group">
<label>Message</label>
<textarea class="form-control" name="message" placeholder="Write your message" rows="4"></textarea>
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary">
Send Message
</button>
</div>
</form>
</div>
</div>
</div>
<div class="col-md-6">
<div class="m-b-lg p-h">
<h5 class="font-normal b-b b-a p-b-xs m-b"> Horizontal Forms </h5>
<div class="m-t-lg">
<form class="form-horizontal">
<div class="form-group">
<label class="col-sm-2 control-label">Name</label>
<div class="col-sm-10">
<input type="text" class="form-control" placeholder="Name">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
<input type="email" class="form-control" placeholder="Email">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" placeholder="Password">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Message</label>
<div class="col-sm-10">
<textarea class="form-control" name="message" placeholder="Write your message" rows="4"></textarea>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-primary">Send Message</button>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="col-lg-8 col-lg-offset-2">
<div class="m-b-lg p-h">
<h5 class="font-normal b-b b-a p-b-xs m-b"> Validation Forms </h5>
<form id="contactform" method="post" class="" action="target.php"
data-bv-message="This value is not valid"
data-bv-feedbackicons-valid="fa fa-check"
data-bv-feedbackicons-invalid="fa fa-remove"
data-bv-feedbackicons-validating="fa fa-refresh">
<div class="form-group">
<label>Name</label>
<input type="text" class="form-control" name="name" placeholder="Enter name"
required data-bv-notempty-message="The name is required and cannot be empty"
pattern="[a-zA-Z0-9_\.]+" data-bv-regexp-message="The name can only consist of alphabetical, number, dot and underscore" />
</div>
<div class="form-group">
<label>Email</label>
<input class="form-control" name="email" type="email" placeholder="Enter email"
required data-bv-notempty-message="The email is required and cannot be empty"
data-bv-emailaddress-message="The input is not a valid email address" />
</div>
<div class="form-group">
<label>Message</label>
<textarea class="form-control" name="message" placeholder="Write your message" rows="10"
required data-bv-notempty-message="The message is required and cannot be empty"
data-bv-stringlength data-bv-stringlength-max="100"
data-bv-stringlength-message="The message must be less than 100 characters long"></textarea>
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary">
Send Message
</button>
</div>
</form>
</div>
</div>
</div>
<p class="text-center m-t-xxl">learn about validator go to <a class="text-info" href="http://1000hz.github.io/bootstrap-validator/"> bootstrapValidator</a> </p>
</div>
</section>
<footer class="bg-dark">
<div class="container">
<div class="row p-v m-t-md text-center">
<p class="m-b-none">
Build with <i class="fa fa-heart-o m-h-2x"></i> by <a href="https://www.facebook.com/zafree" target="_blank"> Zafree</a>
</p>
<p>
Code licensed under <a href="https://github.com/zafree/bootaide/blob/master/LICENSE">MIT</a>,
documentation under <a href="https://creativecommons.org/licenses/by/3.0/" target="_blank">CC BY 3.0</a>.
</p>
<p>
2015 © Bootaide
</p>
</div>
</div>
</footer>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="bower_components/bootstrapvalidator/dist/js/bootstrapValidator.min.js"></script>
<script src="bower_components/jquery.scrollTo/jquery.scrollTo.min.js"></script>
<script src="bower_components/headroom.js/dist/headroom.min.js"></script>
<script src="bower_components/owl-carousel2/dist/owl.carousel.min.js"></script>
<script src="dist/js/bootaide.min.js"></script>
</body>
</html>