-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddEmp.html
More file actions
38 lines (24 loc) · 1.4 KB
/
AddEmp.html
File metadata and controls
38 lines (24 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<title>Add Employee Information</title>
</head>
<center>
<font color="black" size="4" style="font-family: avenir">
<h1 style="color: DodgerBlue">Employee Database</h1>
<body bgcolor="lightgrey">
<form action="/addemp" autocomplete="on" method = "POST" enctype="multipart/form-data">
<button type="submit" formaction="/getemp" style="background: grey; height: 45px; width: 200px; color:white; font:oblique;">GET EMPLOYEE INFORMATION</button><br><br>
Employee ID:<br> <input style="height:25px;font-size:14pt; color:grey;" type="number" name="emp_id" autofocus size="40"><br><br>
First Name:<br> <input style="height:25px;font-size:14pt;color:grey;" type="text" name="first_name" ><br><br>
Last Name:<br> <input style="height:25px;font-size:14pt;color:grey;" type="text" name="last_name"><br><br>
Primary Skills:<br> <input style="height:25px;font-size:14pt;color:grey;" type="text" name="pri_skill"><br><br>
Location:<br> <input style="height:25px;font-size:14pt;color:grey;" type="text" name="location"><br><br>
Image: <input type=file name="emp_image_file" style="height:25px;font-size:14pt;color:grey;"> <br><br>
<button type="submit" style="background: grey; height: 45px; width: 200px; color: white; size: 5; font:oblique;">UPDATE DATABASE</button>
</form>
<a href="/about">About Us</a>
</body>
</font>
</center>
</html>