-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview.php
More file actions
64 lines (64 loc) · 1.71 KB
/
Copy pathview.php
File metadata and controls
64 lines (64 loc) · 1.71 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
<?php include('server.php')?>
<!DOCTYPE html>
<html>
<head>
<title> Search Employee</title>
<style>
.button {
background-color: #e7e7e7; color: black
border: none;
color: black;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 30px;
margin: 4px 2px;
cursor: pointer;
}
input[type=text] {
width: 50%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border: 3px solid #ccc;
-webkit-transition: 0.5s;
transition: 0.5s;
outline: none;
}
input[type=text]:focus {
border: 3px solid #555;
}
</style>
</head>
<body style='background-color:powderblue;'>
<div class='container'>
<div class='header' style='font-size:35px'>
<h1><i>
<p style='text-align:center;'> COMPANY X</p></i>
</h1>
<!-- Navigation for going back-->
<nav>
<table border="8px" align="right" style="width:8%;position:fixed;top:80px;right:0px;" >
<tr>
<td align="right" bgcolor="aqua"><a href="login.php" style='text-decoration:none' <b>Log out</b></a></td>
</tr>
</nav>
</div>
<h2>
<p style='text-align:center'> Search Employee </p>
</h2>
</div>
<form action='view.php' method = 'post' align='center' style='font-size:25px'>
<div align='center' >
<label style='color:green;'>Enter Employee ID</label>
<input style='font-size:25px;' type='text' name='search_id' placeholder=' EMP01' ><br>
</div>
<br><br>
<div align='center'>
<button class="button" name="search"> Search </button>
</p>
</form>
</div>
</body>
</html>