forked from ArchanaAvv/June2015
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidationAssign.html
85 lines (74 loc) · 3.36 KB
/
validationAssign.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
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<body>
<div id="formDetails" class="container">
<form id="userDetailsForm" class="form-horizontal">
<fieldset>
<!-- Form Name -->
<legend>User Details</legend>
<!-- Text input-->
<div class="control-group">
<label class="control-label" for="firstName">First Name</label>
<div class="controls">
<input id="firstName" name="firstName" type="text" placeholder="please enter first name here" class="input-xlarge">
</div>
</div>
<div class="control-group">
<label class="control-label" for="lastName">Last Name</label>
<div class="controls">
<input id="lastName" name="lastName" type="text" placeholder="please enter last name here" class="input-xlarge">
</div>
</div>
<!-- Text input-->
<div class="control-group">
<label class="control-label" for="emailInput">Email</label>
<div class="controls">
<input id="emailInput" name="emailId" type="text" placeholder="please enter your email here" class="input-xlarge">
</div>
</div>
<!-- Text input-->
<div class="control-group">
<label class="control-label" for="password">Password</label>
<div class="controls">
<input id="password" name="password" type="text" placeholder="please enter your password here" class="input-xlarge">
</div>
</div>
<!-- Text input-->
<div class="control-group">
<label class="control-label" for="mobileNumber">Phone Number</label>
<div class="controls">
<input id="mobileNumber" name="mobile" type="text" placeholder="please enter your mobile number here" class="input-xlarge">
</div>
</div>
<div class="control-group">
<label class="control-label" for="birthday">Date Of Birth(MMDDYYY)</label>
<div class="controls">
<input id="birthday" name="birthday" type="text" placeholder="please enter your date of birth here" class="input-xlarge">
</div>
</div>
<div class="control-group">
<label class="control-label" for="gender">Gender</label>
<div class="controls">
<input id="gender" name="gender" type="text" placeholder="please enter your gender here" class="input-xlarge">
</div>
</div>
<br>
<!-- Button -->
<div class="control-group">
<label class="control-label" for="btnSubmit"></label>
<div class="controls">
<button id="btnSubmit" name="btnSubmit" class="btn btn-primary">Submit</button>
</div>
</div>
</fieldset>
</form>
</div>
<script type="text/javascript" src="jquery-1.11.3.js"></script>
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.13.1/jquery.validate.js"></script>
<script type="text/javascript" src="validationAssignment.js"></script>
</body>
</html>