-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
56 lines (54 loc) · 1.72 KB
/
index.php
File metadata and controls
56 lines (54 loc) · 1.72 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
53
54
55
56
<?php
require_once "includes/connect.php";
require_once "includes/redirect.php";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>To Do APP</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="css/style.css" rel="stylesheet" />
<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=Raleway:wght@600;700&display=swap"
rel="stylesheet"
/>
<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=Montserrat:wght@500&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header class="Header">
<h1>#todo - Bienvenido <?=$_SESSION['userData']['nombre']?></h1><br>
<nav class="Header__menu">
<ul id="ul">
<li id="all" value="1">
<a href="#">All</a>
</li>
<li id="active" value="2">
<a href="#">Active</a>
</li>
<li id="complete" value="3">
<a href="#">Complete</a>
</li>
<li id="logout" value="4">
<a href="./backend/logout.php">Log Out</a>
</li>
</ul>
</nav>
</header>
<main id="main">
<div class="form" id="formInput">
<input type="text" name="AggTarea" id="inputAdd" />
<button type="submit" id="add" onclick="add()">Add</button>
</div>
<div class="contaiener" id="content"></div>
</main>
<script src="index.js"></script>
</body>
</html>