-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
59 lines (55 loc) · 2.29 KB
/
Copy pathadmin.php
File metadata and controls
59 lines (55 loc) · 2.29 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
<!DOCTYPE html>
<html>
<head>
<title>Admin Home</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- font awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-beta/css/materialize.min.css">
<style>
header{
background: url(imgs/employee.jpg);
background-size: cover;
background-position:center ;
min-height: 1000px;
}
.image-with-text {
display: flex!important;
flex-direction: column;
align-items: center;
}
@media screen and (max-width:670px){
header{
min-height: 500px;
}
}
</style>
</head>
<body>
<header>
<nav class="nav-wrapper transparent" >
<div class="container">
<a href="#" class="brand-logo " style="color: black" >Welcome, Admin!</a>
<a href="#" data-target="mobile-links" class="sidenav-trigger"><i class="material-icons">menu</i></a>
<ul class ="right hide-on-med-and-down">
<li><a href="Employee-form.php"class="btn">Add Employee</a></li>
<li><a href="Employee-list.php"class="btn">Employee List</a></li>
<li><a href="Roomlistpage.php"class="btn">Room List</a></li>
<li><form action="logout.php" method="post" class="logout-form">
<button type="submit" class="btn">Logout</button>
</form></li>
</ul>
<ul class="sidenav" id="mobile-links"><li>
<li><a href="/home"class="btn">Home</a></li>
<li><a href="/logout"class="btn">Logout</a></li>
</ul>
</div>
</nav><br>
</header>
</body>
</html>