-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
38 lines (34 loc) · 1.09 KB
/
index.php
File metadata and controls
38 lines (34 loc) · 1.09 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
<?php
session_start();
$_SESSION["info"]="";
?>
<!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">
<link rel="stylesheet" href="css/main.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap" rel="stylesheet">
<title>Home</title>
</head>
<body>
<div class="container">
<nav>
<div>
<h1>Your ToDo App!</h1>
</div>
<div>
<ul>
<li><a href="login.php"><img width="25px" src="assets/svg/login.svg" alt="login"></a></li>
<li><a href="signup.php"><img width="25px" src="assets/svg/signup.svg" alt="signup"></a></li>
</ul>
</div>
<p class="foot">© 2021 by <a href="https://github.com/YaiGenes" target="_blank">YaiGenes</a></p>
<p class="foot">Powered by 🐘 and 🐬</p>
</nav>
</div>
</body>
</html>