-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmenu.html
More file actions
91 lines (76 loc) · 3.14 KB
/
menu.html
File metadata and controls
91 lines (76 loc) · 3.14 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
<!DOCTYPE html>
<html>
<head>
<title>Menu | TimeSaver</title>
<meta charset="UTF-8">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Tab Icon -->
<link rel="icon" type="image/png" href="">
<!-- Bootstrap 4 css -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Open Iconic CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/open-iconic/1.1.1/font/css/open-iconic.min.css">
<!-- TimeSaver css -->
<link rel="stylesheet" href="css/style.css">
<!-- Google Font(s) -->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet">
<script src="js/jquery-3.5.1.min.js"></script> <!-- jQuery -->
<script src="js/bootstrap.min.js"></script> <!-- Bootstrap -->
<script src="js/main.js"></script> <!-- Custom -->
</head>
<body onload="checkPrivilege('menu');">
<!-- Navigation -->
<nav class="navbar navbar-light bg-light fixed-top border-bottom">
<div class="container mr">
<a class="navbar-brand" href="index.html"><strong>Time Saver</strong></a>
<div>
<a class="btn btn-primary px-5" onclick="return(logOut());" id="logOut" href="login.html">Log Out</a>
</div>
</div>
</nav>
<!-- Masthead -->
<header class="masthead-sm text-white text-center">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-xl-9 mx-auto">
<h1>Welcome to Time Saver!</h1>
<h2><u>Logged in as:</u></h2>
<script>
loadUserNT("menu");
</script>
</div>
</div>
</div>
</header>
<!-- Menu Directory -->
<section class="bg-light text-center">
<div class="container">
<div class="row">
<div class="col-lg-12 my-5 py-0 py-md-5 border border-2 border-black border-remove">
<div class="mx-auto mb-5 mb-lg-0 mb-lg-3">
<div class="features-icon-item text-center">
<span class="oi oi-blue oi-lg" data-glyph="home"></span>
</div>
<h3 class="py-3">Main Menu</h3>
<script>
loadMenuButtons();
</script>
<div class="row">
<div class="col-10 mx-auto pt-5 border-top border-2 border-black">
<a class="btn menu-btn btn-primary text-center py-2" onclick="return(logOut());" id="menuLogOut" href="login.html">Log Out</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script>
//removes view/edit timesheet
deleteTime();
</script>
</body>
</html>