-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmployee Regestration.html
107 lines (98 loc) · 2.24 KB
/
Employee Regestration.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
<html>
<head>
<title>Employee Regestration</title>
</head>
<body>
<center>
<form style="width: 30%;">
<h1 align="center">Employee Regestration</h1>
<fieldset>
<legend>Personal Information</legend>
<table align="center">
<tr>
<td>Employee Id</td>
<td>: </td>
<td><input type="text" pattern="[0-9]{4}" required></td>
</tr>
<tr>
<td>Employee Name</td>
<td>: </td>
<td><input type="text" required></td>
</tr>
<tr>
<td>Email Id</td>
<td>: </td>
<td><input type="email" required></td>
</tr>
<tr>
<td>Contact Number</td>
<td>: </td>
<td><input type="text" pattern="[6789][0-9][10]" required></td>
</tr>
<tr>
<td>Maritial Status</td>
<td>: </td>
<td>
<input type="radio" name="maritalStatus" checked>Married
<input type="radio" name="maritalStatus">Single
</td>
</tr>
</table>
</fieldset>
<br>
<fieldset class="fieldSet">
<legend>Education / Experiance</legend>
<table align="center">
<tr>
<td>Education</td>
<td>: </td>
<td><textarea required></textarea></td>
</tr>
<tr>
<td>Experiance</td>
<td>: </td>
<td><textarea required></textarea></td>
</tr>
</table>
</fieldset>
<br>
<fieldset>
<legend>Job Details</legend>
<table align="center">
<tr>
<td>Designation</td>
<td>: </td>
<td><textarea required></textarea></td>
</tr>
<tr>
<td>Job Location</td>
<td>: </td>
<td>
<select>
<option selected>Rajkot</option>
<option>Bhavnagar</option>
<option>Junagadha</option>
<option>Baroda</option>
<option>Surat</option>
</select>
</td>
</tr>
<tr>
<td>Salary</td>
<td>: </td>
<td><input type="text" pattern="[0-9][5]" required></td>
</tr>
</table>
</fieldset>
<br>
<table align="center">
<tr>
<td><input type="Submit" value="Submit" name="Submit"></td>
<td> </td>
<td><button>Cancle</button></td>
</tr>
</table>
</form>
</center>
</body>
</html>