-
Notifications
You must be signed in to change notification settings - Fork 5
/
404.php
27 lines (24 loc) · 1.06 KB
/
404.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
<?php include 'frontend/header.php'; ?>
<body>
<div class="container-fluid h-100">
<div class="row justify-content-center align-items-center h-100">
<div class="col-12 col-lg-10 col-xl-8 col-xxl-5 mt-5">
<div class="card border-0 mt-5">
<div class="text-center">
<img src="<?php $_SERVER['DOCUMENT_ROOT'] ?>/frontend/assets/svg/utc-wordmark-reverse.svg" alt="UTC Logo" width="300px" style="margin-top:-4rem;">
</div>
<div class="card-body px-md-5">
<h1>Sorry,</h1>
<p>You have followed a shortcut link to a path that does not exist.</p>
<h2>Options</h2>
<ul>
<li>Go to the <a href="https://www.utc.edu">UTC home page</a></li>
<li>Try to <a href="#" onclick="window.close();">close this window</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</body>
</html>