-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
62 lines (55 loc) · 1.25 KB
/
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
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
<?php
require_once 'includes/auth.php';
requireLogin();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home</title>
<style>
/* Add your CSS styles here */
body {
font-family: Arial, sans-serif;
background-color: #f5f8fa;
color: #14171a;
margin: 0;
padding: 0;
}
header {
background-color: #fff;
padding: 1rem;
border-bottom: 1px solid #e1e8ed;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 1rem;
}
nav ul li a {
text-decoration: none;
color: #1da1f2;
font-weight: bold;
}
main {
max-width: 600px;
margin: 2rem auto;
padding: 1rem;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<?php include 'includes/header.php'; ?>
<main>
<h1>Welcome to the PHP site!</h1>
</main>
<?php include 'includes/footer.php'; ?>
</body>
</html>