-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
68 lines (54 loc) · 1.6 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>title</title>
<link rel="stylesheet" href="bootstrap.css" type="text/css">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<form>
<div class="form-group" >
<label>Name</label>
<input
placeholder="Sarah Ahmed"
class="form-control">
</div>
<div class="form-group">
<label>Email</label>
<input
placeholder="sarahsga4@gmail.com"
class="form-control">
</div>
<div class="form-group">
<label>Postal Code</label>
<input
pattern="\d{5}"
placeholder="12345"
class="form-control">
</div>
<div class="form-group">
<label>Phone</label>
<input
pattern="\+\d{2}-\d{3}-\d{7}"
placeholder="+92-331-1234567"
class="form-control">
</div>
<div class="form-group">
<label>Expected Salary</label>
<input
pattern="(\d+,?)*\d+"
placeholder="80000"
class="form-control">
</div>
<div class="form-group">
<label>Roll Number</label>
<input
pattern="[A-Z]{2}-\d{3}"
placeholder="SE-005"
class="form-control">
</div>
<button type="submit" class="btn btn-lg btn-success" >Submit</button>
</form>
</body>
</html>