-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (44 loc) · 1.67 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
<!DOCTYPE html>
<!--[if IE 7]>
<html class="ie ie7">
<![endif]-->
<!--[if IE 8]>
<html class="ie ie8">
<![endif]-->
<!--[if !(IE 7) | !(IE 8) ]><!-->
<html>
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" initial-scale="1.0" />
<title>RSR Form Validation Plugin</title>
<link rel="profile" href="http://gmpg.org/xfn/11">
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="all" href="/styles/css/app.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript" src="/scripts/validator.js"></script>
<script type="text/javascript" src="/scripts/app.js"></script>
</head>
<body>
<div class="container">
<h1>Welcome to the future of form validation.</h1>
<h2>A jQuery plugin for seamless front-end form validation. HTML5 supported.</h2>
<form id="myForm">
<fieldset>
<label for="basicTextInput">Name</label>
<input class="form-item required" name="basicTextInput" type="text" value="" />
</fieldset>
<fieldset>
<label for="emailInput">Email</label>
<input class="form-item required" name="emailInput" type="email" value="" />
</fieldset>
<fieldset>
<label for="addressInput">Address</label>
<input class="form-item required" name="addressInput" type="text" value="" data-validator="address" />
</fieldset>
<input type="submit" id="submitButton" value="Submit" disabled />
</form>
</div>
</body>
</html>