-
Notifications
You must be signed in to change notification settings - Fork 0
/
addemployee.php
87 lines (80 loc) · 5.06 KB
/
addemployee.php
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
<!DOCTYPE html>
<html>
<head>
<title> Employee </title>
<link rel="stylesheet" href="addemployee.css">
</head>
<body>
<h1 style="text-align:center; background-color:#487af0;padding:2px;font-size:40px;width:80%;opacity:1;"><b>Add Employee</b> </h1>
<p>Employee Profile </p> <br><br><br><br><br><br><br><br>
<form action="insertemployee.php" method="POST">
<fieldset style="border-color: rgb(0, 149, 255);border-radius:3px;border-width: 5px;">
<legend style="background-color: rgb(139, 220, 247);
border-radius: 35px;font-size: 20px;padding:10px;">EMPLOYEE DETAILS</legend>
<label for="employee_id" style="color:white;">Employee id</label>
<input type="text" id="employee_id" name="employee_id" placeholder="Enter Your Employee Id"><br>
<label for="department_id" style="color:white;">Department id</label>
<input type="text" id="department_id" name="department_id" placeholder="Enter Your Department Id"><br>
<label for="fulname" style="color:white;">Name</label>
<input type="text" id="fulname" name="fulname" placeholder="Enter Your Name"><br>
<label for="email" style="color:white;">Email</label>
<input type="text" id="email" name="email" placeholder="Enter Your Email">
<br><label for="age"style="color:white;">Age</label>
<input type="text" id="age" name="age" placeholder="Enter Your Age" >
<br><label for="phone"style="color:white;">Phone number</label>
<input type="text" id="phone" name="phone" placeholder="Enter Your Phone" >
<br><label for="gender" style="color:white;">Gender</label>
<input type="text" id="gender" name="gender" placeholder="Enter Your Gender" >
<br><label for="job" style="color:white;">Job</label>
<input type="text" id="job" name="job" placeholder="Enter Your Job" >
<br><label for="hire" style="color:white;">Hire Date</label>
<input type="text" id="hire" name="hire" placeholder="Enter Your Hire Date" >
<br><label for="account" style="color:white;">Account No</label>
<input type="text" id="account" name="account" placeholder="Enter Your Account No" >
<br><label for="kra" style="color:white;">KRA pin</label>
<input type="text" id="kra" name="kra" placeholder="Enter Your KRA pin" >
</fieldset>
<fieldset style="border-color: rgb(0, 149, 255);border-radius:3px;border-width: 5px;">
<legend style="background-color: rgb(139, 220, 247);
border-radius: 35px;font-size: 20px;padding:10px;">BANK DETAILS</legend>
<label for="bankid" style="color:white;" >Bank Id</label>
<input type="text" id="bankid" name="bankid" placeholder="Enter Your Bank ID" ><br>
<label for="bankname" style="color:white;" >Bank name</label>
<input type="text" id="bankname" name="bankname" placeholder="Enter Your Bank name" ><br>
<label for="bankbranch" style="color:white;" >Bank branch</label>
<input type="text" id="bankbranch" name="bankbranch" placeholder="Enter Your Bank branch" > <br>
<label for="branchid" style="color:white;" >Branch id</label>
<input type="text" id="branchid" name="branchid" placeholder="Enter Your Branch_id" ><br>
<label for="bankloanmonthlyinstalment" style="color:white;" >Bank loan Monthly Installments</label>
<input type="text" id="bankloanmonthlyinstalment" name="bankloanmonthlyinstalment" placeholder="Enter Your Bank Loan Monthly Instalments" > <br>
<label for="banksavings" style="color:white;" >Bank savings</label>
<input type="text" id="banksavings" name="banksavings" placeholder="Enter Your Bank Savings" ><br>
</fieldset>
<fieldset style="border-color: rgb(0, 149, 255);border-radius:3px;border-width: 5px;">
<legend style="background-color: rgb(139, 220, 247);
border-radius: 35px;font-size: 20px;padding:10px;">NEXT OF KIN</legend>
<label for="namekin" style="color:white;">Name</label>
<input type="text" id="namekin" name="namekin" placeholder="Enter Your Name"><br>
<label for="agekin" style="color:white;">Age</label>
<input type="text" id="agekin" name="agekin" placeholder="Enter Your Age"><br>
<label for="relationkin" style="color:white;">Relation</label>
<input type="text" id="relationkin" name="relationkin" placeholder="Enter Your Relation"><br>
<label for="phone_no" style="color:white;">Phone Number</label>
<input type="text" id="phone_no" name="phone_no" placeholder="Enter Your Phone Number"><br>
</fieldset>
<fieldset style="border-color: rgb(0, 149, 255);border-radius:3px;border-width: 5px;">
<legend style="background-color: rgb(139, 220, 247);
border-radius: 35px;font-size: 20px;padding:10px;">Dependants</legend>
<label for="namedep" style="color:white;">Name</label>
<input type="text" id="namedep" name="namedep" placeholder="Enter Your Name"><br>
<label for="agedep" style="color:white;">Age</label>
<input type="text" id="agedep" name="agedep" placeholder="Enter Your Age"><br>
<label for="relationdep" style="color:white;">Relation</label>
<input type="text" id="relationdep" name="relationdep" placeholder="Enter Your Relation"><br>
<label for="phone_nodep" style="color:white;">Phone Number</label>
<input type="text" id="phone_nodep" name="phone_nodep" placeholder="Enter Your Phone Number"><br>
</fieldset>
<input type="submit" value="Add">
</form>
</body>
</html>