-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEmployeeIn.php
More file actions
38 lines (31 loc) · 1.35 KB
/
EmployeeIn.php
File metadata and controls
38 lines (31 loc) · 1.35 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
<?php
include 'dbh.php';
session_start();
$employeeID = $_SESSION['employeeID'];
?>
<link href="./css/employeeIn.css" type="text/css" rel="stylesheet">
<h1>You can search or modify your personal information here</h1>
<div class="scrollmenu">
<div class="card">
<h2>Search for student informations here</h2>
<form class="search-order" action="employeeSearchStudentInfo.php" method="POST">
<input type="text" placeholder="Student ID" name="studentID"><br>
<button type="submit" name="searchbutton">Search</button>
</form>
</div>
<div class="card">
<h2>Search for student's program</h2>
<form class="search-order" action="employeeSearchStudentProgram.php" method="POST">
<input type="text" placeholder="Student ID" name="studentID"><br>
<button type="submit" name="searchbutton">Search</button>
</form>
</div>
<div class="card">
<h2>Search for student's Manager</h2>
<form class="search-order" action="employeeSearchStudentManager.php" method="POST">
<input type="text" placeholder="Student ID" name="studentID"><br>
<button type="submit" name="searchbutton">Search</button>
</form>
</div>
</div>
<input type="button" value="Logout" class="button" id="backbtnmain" onClick="document.location.href='index.php'">