-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (40 loc) · 2.2 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
<!DOCTYPE html>
<html>
<head>
<title>jQuery Form Validation</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel='stylesheet' href='style.css' type='text/css'/>
</head>
<body>
<h2>jQuery Form Validation</h2>
<div class="container">
<form id="frm" method="post">
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Enter your full name">
<br/><br/>
<label for="dob">DOB </label>
<input type="text" id="dob" name="dob" placeholder="YYYY-MM-DD">
<br/><br/>
<label for="email">Email </label>
<input type="email" id="email" name="email" placeholder="[email protected]">
<br/><br/>
<label for="contact">Contact </label>
<input type="text" id="contact" name="contact" placeholder="Enter your contact number">
<br/><br/>
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Enter your password">
<br/><br/>
<label>Confirm Password</label>
<input type="password" id="cpass" name="cpass" placeholder="Enter Confirm password">
<br/><br/>
<input type="submit" value="Submit">
</form>
</div>
<script src="https://code.jquery.com/jquery-3.7.1.min.js" ></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.3/jquery.validate.min.js" ></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+" crossorigin="anonymous"></script>
<script src="script.js" ></script>
</body>
</html>