-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (40 loc) · 2 KB
/
index.html
File metadata and controls
58 lines (40 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Code sample</title>
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700|Open+Sans:300,400' rel='stylesheet' type='text/css'>
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="/css/sample.css" />
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.1/jquery.validate.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.1/additional-methods.min.js"></script>
<script type="text/javascript" src="/dist/js/sample.min.js"></script>
</head>
<body>
<div id="password_container">
<div class="container">
<div id="password" >
<form id="password-form" class="form-inline" role="form" method="post" action="landing.php">
<h2>ENTER <span class="nowrap">VERIFICATION CODE</span></h2>
<div class="form-group">
<label class="sr-only" for="code">Password</label>
<input type="password" class="form-control input-lg" id="code" name="code" placeholder="Verification Code">
</div>
<button id="code_submit" type="submit" class="btn btn-lg btn-warning btn-default">Enter</button>
<div class="clear"></div><!-- end div.clear -->
</form>
<div class="clear"></div><!-- end div.clear -->
<div id="messageBox1"></div><!-- end div.errors -->
</div><!-- end div#password -->
<div class="clearfix"></div><!-- end div.clearfix -->
</div><!-- end div.container -->
<div class="clearfix"></div><!-- end div.clearfix -->
</div><!-- end div#password_container -->
</body>
</html>