-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
29 lines (24 loc) · 848 Bytes
/
index.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
<?php
session_start();
include_once "webconfig.html";
?>
<!DOCTYPE html>
<html style="font-size: 16px;" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./font/stylesheet.css" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="shortcut icon" href="./image/favicon.ico" type="./image/x-icon" />
<link rel="stylesheet" href="./assets/fontawesome/css/all.min.css" />
<script src="./assets/fontawesome/js/all.min.js"></script>
<script src="./assets/jquery/jquery-3.6.1.js"></script>
<title>Redirecting...</title>
</head>
<body>
<?php
header("Location: VIEW/home.php");
?>
</body>
</html>