-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstaff.php
More file actions
92 lines (61 loc) · 2.2 KB
/
staff.php
File metadata and controls
92 lines (61 loc) · 2.2 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
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
<?php
$date = date('Y-m-d H:i:s');
?>
<!DOCTYPE html>
<html>
<head>
<title>HMS</title>
<link rel="stylesheet" type="text/css" href="admin.css">
</head>
<body>
<div class="jumbo">
<header class="header">
<h3>Hospital Management System</h3>
<div class="find">
<input type="search" name="" placeholder="search staff">
<button type="submit" name="search_id" class="submit">Submit</button>
</div>
</header>
</div>
<div class="side-bar">
<div>
</div>
<div class="pat">
<button type="submit" name="search_id" class="submit" id="back"><a href="admin.php">Back</a></button>
<a href="" class="card" id="card">Staffs</a><br>
<a href="staff_details.php" class="pill">Staff Details</a><br>
<a href="staff.php" class="pill">Add New Staff</a><br>
</div>
</div>
<div class="main-bar" style="width:60%;">
<span class="card1">
<input type="" name="" value="Add New Appointment">
</span>
<form class="" action="function.php" method="post">
<!--<label>Firstname </label>-->
<input type="text" name="firstname" placeholder="enter firstname" required="">
<!--<label>Lastname</label>-->
<input type="text" name="lastname" placeholder="enter lastname" required="">
<!--<label>Email</label>-->
<input type="text" name="email" placeholder="enter email" required="">
<!--<label>Contact No</label>-->
<input type="text" name="contact" placeholder="enter GSM" required="">
<!--<label>duty</label>-->
<input type="text" name="duty" placeholder="enter duty" required="">
<select name="qual" required="">
<option value="HND"> HND</option>
<option value="OND"> OND </option>
<option value="BSC"> BSC </option>
</select>
<!--<label>Date joined</label>-->
<input type="text" name="time_stamp" placeholder="<?php echo $date; ?>" value="<?php echo $date; ?>" >
<div class="Upload Doc">
<input class="pick" type="file" name="file" placeholder="Upload file" >
</div>
<div class="Submit">
<input type="submit" class="sbt" name="submit_st" value="Submit">
</div>
</form>
</div>
</body>
</html>