-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
53 lines (36 loc) · 1.23 KB
/
index.php
File metadata and controls
53 lines (36 loc) · 1.23 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
<?php
session_start();
if(isset($_SESSION['anon_id'])){
header("location: /portal/");
}
?>
<?php include_once "/opt/lampp/htdocs/src/php/header.php"; ?>
<title>Sandika</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col welcome animate__animated animate__fadeIn animate__delay-1s">
WELCOME TO
</div>
</div>
<img src="/src/pics/logo.jpg" width="250" height="250" class="img-fluid rounded-circle animate__animated animate__fadeIn animate__delay-2s" alt="sandika">
<div class="row mt-4">
<div class="col titr animate__animated animate__fadeIn animate__delay-3s">𝐒 𝐀 𝐍 𝐃 𝐈 𝐊 𝐀</div>
</div>
<div class="row">
<div class="col enter mt-3">
<a href="" class="animate__animated animate__fadeIn animate__delay-5s" data-bs-toggle="modal" data-bs-target="#signup">enter</a>
</div>
</div>
</div>
<div class="container">
<footer>
<div class="row mt-5">
<div class="col mt-5 desc animate__animated animate__fadeIn animate__delay-4s">
WHERE JUSTICE TRULY LIES?
</div>
</div>
</footer>
</div>
<?php include_once "/opt/lampp/htdocs/src/php/footer.php"; ?>