forked from kickdrop/animated-form-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 2.62 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Form Validation with Animations</title>
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" media="all" rel="stylesheet">
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" media="all" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.1.0/animate.min.css" media="all" rel="stylesheet">
<link href="http://fonts.googleapis.com/css?family=Raleway:300,500" rel="stylesheet" type="text/css">
<link href="css/styles.css" media="all" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.1/modernizr.min.js"></script>
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport">
</head>
<body>
<div class="wrapper">
<div class="form-header">
<div class="fa fa-paper-plane"></div>
<h1>ACME, INC</h1>
</div>
<form class="form animate-form" id="form" onsubmit="return false;">
<div class="form-group has-feedback">
<label class="control-label sr-only" for="username">Username</label>
<div class="input-group-addon">
<div class="glyphicon glyphicon-user"></div>
</div>
<input class="form-control" id="username" name="username" placeholder="Username" type="text">
<span class="glyphicon glyphicon-ok form-control-feedback"></span>
</div>
<div class="form-group has-feedback">
<label class="control-label sr-only" for="email">Email address</label>
<div class="input-group-addon">
<div class="glyphicon glyphicon-envelope"></div>
</div>
<input class="form-control" id="email" name="email" placeholder="Email address" type="text"><span class="glyphicon glyphicon-ok form-control-feedback"></span>
</div>
<div class="form-group has-feedback">
<label class="control-label sr-only" for="password">Password</label>
<div class="input-group-addon">
<div class="glyphicon glyphicon-lock"></div>
</div>
<input class="form-control" id="password" name="password" placeholder="Password" type="password"><span class="glyphicon glyphicon-ok form-control-feedback"></span>
</div>
<div class="form-group submit">
<input class="btn btn-lg" type="submit" value="SEND">
</div>
</form>
</div>
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="js/jquery.validation.js"></script>
<script src="js/main.js"></script>
</body>
</html>