-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfacilities.php
40 lines (33 loc) · 984 Bytes
/
facilities.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
<head>
<title>Facilities</title>
<style>
<?php include "css/helpFac.css"; ?>
</style>
</head>
<body>
<div class="navbar">
<a href="index.php">
<img src="assets/techsup-logo-white.png" class="logo">
</a>
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="user/main/register.php">Register</a></li>
<li><a href="user/main/login.php">Login</a></li>
<li><a href="#">Facilities</a></li>
<li><a href="help.php">Help</a></li>
</ul>
</div>
<div class="content">
<h1>Facilities of system</h1>
<ul>
<li>Send Issue</li>
<li>Create account</li>
<li>Update account</li>
<li>Update issue</li>
<li>View issue</li>
</ul>
<br>
<a href="user/main/login.php"><button class="button support" type="button">Get support!</button></a>
</div>
</body>
</html>