-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome.php
More file actions
74 lines (69 loc) · 2.71 KB
/
Home.php
File metadata and controls
74 lines (69 loc) · 2.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
65
66
67
68
69
70
71
72
73
74
<?php
session_start();
?>
<html>
<head>
<title>HelpDesk</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="picture/help.ico" />
<link href="css/main.css" rel="stylesheet" type="text/css" />
<script src="https://kit.fontawesome.com/25823c862e.js"></script>
<link href="https://fonts.googleapis.com/css?family=Oswald&display=swap" rel="stylesheet">
<link href="css/alerts.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="content">
<div class="title">
<i class="fas fa-hands-helping fa-2x"></i>
<h1> HelpDesk</h1>
<!-- <img style=" max-width:13%; max-height:13%;" src="picture/juc.png" alt="JUC"> -->
</div>
<div class="header">
<ul>
<li><a class="active" href="Home.php">Home</a></li>
<li><a href="Requests.php">Requests</a></li>
<li><a href="contactUs.php">Contact us</a></li>
<li><a href="FAQ.php">FAQs</a></li>
<li><a href="About.php">About</a></li>
<li style="float:right">
<?php
require "tools/session.php";
?>
</li>
</ul>
</div>
<br>
<div class="homeErrors">
<?php
require "tools/homeErrors.php";
?>
</div>
<br>
<div class="subTitle">
<center>
<h1 class="subTitle" style="font-size:45px">How can we help you today?</h1>
</center>
</div>
<br><br>
<div class="tabs">
<center>
<a href="Requests.php"><button class="btn"><i class="fa fa-bars fa-5x"></i><br><br>Requests</button></a>
<a href="contactUs.php"><button class="btn"><i class="far fa-lightbulb fa-5x"></i><br><br>Contact us</button></a>
<a href="FAQ.php"><button class="btn"><i class="fas fa-question fa-5x"></i><br><br>FAQs</button></a>
</center>
</div>
</div>
<br>
<!-- <a class="weatherwidget-io" href="https://forecast7.com/en/26d9649d57/al-jubail/" data-label_1="JUBAIL" data-label_2="WEATHER" data-theme="original" >JUBAIL WEATHER</a>
<script>
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src='https://weatherwidget.io/js/widget.min.js';fjs.parentNode.insertBefore(js,fjs);}}(document,'script','weatherwidget-io-js');
</script> -->
<br>
</body>
</html>
<?php
require "tools/footer.php";
?>