-
Notifications
You must be signed in to change notification settings - Fork 13
/
header.php
70 lines (65 loc) · 1.78 KB
/
header.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
<style type="text/css" rel="stylesheet" >
.navbar-nav .nav-item .nav-link
{
color: #fff;
font-size: 20px;
}
.nav-link:hover
{
text-decoration: none;
}
.btn-link
{
color: #fff;
font-size: 20px;
}
.btn-link:hover
{
text-decoration: none;
color: #ccc;
}
/*.carousel-inner {margin-top: 50px; margin-bottom: 50px;}
.carousel-inner .carousel-item img
{
height: 100%;
width: 100%;
}
.carousel-item
{
background-color: #fff;
overflow-x: hidden;
}
#btprev: hover, #btnnext: hover
{
background-color: #000000;
}
.input-group{width:600px; height:60px;}
.course_link{color: darkcyan;}
#dropdownMenuLink
{
background: transparent;
transition: none;
}
#dropdownMenuLink:hover{
border: 0px;
transition: none;
color: #ccc;
}*/
</style>
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<img class="rounded-circle" src="../images/TMS_logo.png" width="50" height="40" alt="TMS">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.php">Home</a>
</li>
<li class="nav-item">
<a href="teacher.php" class="nav-link">Teacher</a>
</li>
</ul>
<button class="btn btn-link my-2 my-sm-0" type="button" onclick="window.location.replace('../processes/logout.process.php')">Logout</button>
</div>
</nav>