-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform1.html
More file actions
48 lines (35 loc) · 1.75 KB
/
form1.html
File metadata and controls
48 lines (35 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="form.css">
<title>FORM JS</title>
</head>
<body>
<div class="maindiv">
<div class="formdiv">
<div class="innerdiv1">
<h2>Form Validation'S</h2>
</div>
<div class="innerdiv2">
<form action="" method="post" autocomplete="off">
<label> Username </label>
<input type="text" name="uname" placeholder="Enter User Name..." required > <i class="fas fa-exclamation"></i> <br>
<label> Email </label>
<input type="email" name="email" placeholder="Enter Email... " required > <i class="fas fa-exclamation"></i><br>
<label> Mobile </label>
<input type="number" name="mobilenmbr" placeholder="Enter Mobile No. ... " required > <i class="fas fa-exclamation"></i><br>
<label> Password </label>
<input type="password" name="password" placeholder="Enter Password... " required > <i class="fas fa-exclamation"></i><br>
<label> Confirm Password </label>
<input type="password" name="cpnfirmpass" placeholder="Re-enter Password... " required > <i class="fas fa-exclamation"></i><br><br>
<input type="submit" name="submit" style="background-color: #00a2ed; font-weight: bold; font-size: 17px;">
</form>
</div>
</div>
</div>
</body>
</html>