forked from TanNguyen17112003/ananas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
34 lines (34 loc) · 1.6 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
28
29
30
31
32
33
34
<?php
$rootPath = '/ananas';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Not found</title>
<link rel="stylesheet" href="https://site-assets.fontawesome.com/releases/v6.1.2/css/all.css">
<link rel="icon" type="image/x-icon" href="https://brademar.com/wp-content/uploads/2022/09/Ananas-Logo-PNG-1.png">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link rel="stylesheet" href="./public/css/base.css">
<link rel="stylesheet" href="./public/css/home.css">
</head>
<body>
<div class="container">
<div class="row mt-5">
<div class="alert alert-danger" role="alert">
<i class="fa-duotone fa-triangle-exclamation"></i> 404 Không tìm thấy trang!!!
</div>
</div>
<div class="row">
<div class="d-flex justify-content-center">
<a href="<?php echo $rootPath?>" class="btn btn-primary"><i class="fa-sharp fa-solid fa-house"></i> Trở về trang chủ</a>
</div>
</div>
</div>
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
</body>
</html>