-
Notifications
You must be signed in to change notification settings - Fork 0
/
empForm.html
33 lines (28 loc) · 1.11 KB
/
empForm.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
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div id="errorDiv">
<p style = "display: none" id ="error"></p>
<p style = "display: none" id ="sucess"></p>
</div>
<div id = "empDiv">
<form name="empForm">
<p style = "display: none" id ="error"></p>
<p style = "display: none" id ="sucess"></p>
<input type ="text" id = "fname" placeholder ="Enter Firstname">
<input type ="text" id = "lname" placeholder ="Enter Lastname">
<input type ="text" id = "dob" placeholder ="Enter Date of Birth">
<input type ="text" id = "empId" placeholder ="Enter Employee Id">
<input type ="text" id = "email" placeholder ="Enter Email">
<input type ="text" id = "mobile" placeholder ="Enter Mobile">
<textarea type ="text" rows="4" cols = "50" id = "adress" placeholder ="Enter Address"></textarea>
<div>
<input type ="submit" value = "Submit" id ="submitButon" onclick = "return parent.empFormValidate()">
<input type = "submit" value = "Show Details" id ="showButon" onclick="return parent.showInTable();">
</div>
</form>
</div>
</body>
</html>