-
Notifications
You must be signed in to change notification settings - Fork 1
/
plumber registration.html
109 lines (80 loc) · 4.89 KB
/
plumber registration.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<title>Plumber registration</title>
<link rel="stylesheet" href="plumber styling.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Kaushan+Script&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</head>
<body class="home">
<form>
<div class="container">
<center>
<h1>Registration Form</h1>
<p>Please fill this form to register.</p>
<hr>
<table >
<tr>
<td><label for="name"><b>Name</b></label></td>
<td><input class="input" type="text" placeholder="Enter Full Name" name="Name" required></td></tr>
<tr><td><label for="contact no"><b>Contact No.</b></label></td>
<span><td><input class="input" type="text" placeholder="Enter Contact No." name="contact no" required></td></span></tr>
<tr><td><label for="email"><b>Email</b></label></td>
<td><input class="input" type="text" placeholder="Enter Email" name="email" required></td>
</tr>
<tr><td><label for="Current Address"><b>Current Address(Line1)</b></label></td>
<td><input class="input" type="text" placeholder="House No/Flat No" name="line1" required></td></tr>
<tr><td><label for="line2"><b>Line 2</b></label></td>
<td><input class="input" type="text" placeholder="Locality/Region" name="line2" required></td></tr>
<tr><td><label for="city"><b>City</b></label></td>
<td><input class="input" type="text" placeholder="City" name="city" required></td></tr>
<tr><td><label for="state"><b>State</b></label></td>
<td><input class="input" type="text" placeholder="State" name="state" required></td></tr>
<tr><td><label for="pin-code"><b>Pin Code</b></label></td>
<td><input class="input" type="number" maxlength="6" placeholder="pin-code" name="pin-code" required></td></tr>
<hr></table>
<h2>Work Details</h2>
<table>
<tr><td><label for="Experience"><b>Experience</b></label></td>
<td><input class="input" type="text" placeholder="In Years" name="Experience" required></td></tr>
<tr><td><label for="previous-work"><b>Previous Work Details</b></label></td>
<td><input class="input" type="text" maxlength="50" placeholder="max 50 words" name="previous-work" required></td></tr>
<tr><td><label for="current-work"><b>Current Work Details</b></label></td>
<td><input class="input" type="text" maxlength="50" placeholder="max 50 words" name="current-work" required></td></tr>
<tr><td><label for="Work Address"><b>Work Address(Line1)</b></label></td>
<td><input class="input" type="text" placeholder="House No/Flat No" name="line1" required></td></tr>
<tr><td><label for="line2"><b>Line 2</b></label></td>
<td><input class="input" type="text" placeholder="Locality/Region" name="line2" required></td></tr>
<tr><td><label for="city"><b>City</b></label></td>
<td><input class="input" type="text" placeholder="City" name="city" required></td></tr>
<tr><td><label for="state"><b>State</b></label></td>
<td><input class="input" type="text" placeholder="State" name="state" required></td></tr>
<tr><td><label for="pin-code"><b>Pin Code</b></label></td>
<td><input class="input" type="number" maxlength="6" placeholder="pin-code" name="pin-code" required></td></tr>
<hr>
<tr><td><label for="psw"><b>Password</b></label></td>
<td><input class="input" type="password" placeholder="Enter Password" name="psw" required></td></tr><br>
<tr><td><label for="psw-repeat"><b>Repeat Password</b></label></td>
<td><input class="input" type="password" placeholder="Repeat Password" name="psw-repeat" required></td></tr></table>
<button type="submit" class="input btn-outline-dark btn-md">Generate Otp</button><br>
<table>
<tr><td><label for="Otp"><b>Enter Otp</b> </label></td>
<td><input class="input" type="password" placeholder="Enter Otp" name="otpbtn" required></td></tr></table>
</table>
<hr>
<label>
<input class="input" type="checkbox" checked="checked" name="remember" style="margin-bottom:15px"> Remember me
</label>
<p>By creating an account you agree to our <a href="#">Terms & Privacy</a>.</p>
<button type="submit" class="input btn-outline-dark btn-md" onclick="location.href='NEW.html'">Register</button>
<p>Already have an account? <a href="#">Sign in</a>.</p>
</div>
</form>
</center>
</body>
</html>