-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (35 loc) · 1.11 KB
/
index.html
File metadata and controls
37 lines (35 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TaskManager | Web</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="header">
<h1 class="title">TaskManager</h1>
</div>
<br>
<div class="navbar">
<button class="left">Acceuil</button>
<button class="left">Tasks</button>
<a id="profile" onclick="alert('Indisponible pour le moment')"><img src="profile.png" alt="Profile"></a>
</div>
<div id="login">
<input type="text" id="name" placeholder="name">
<input type="text" id="email" placeholder="email">
<button id="valider">Valider</button>
<p id="msg"></p>
</div>
<div id="profile-sect"></div>
<br><br><br>
<div id="tasks"></div>
<div id="vue">
<h3>Vues</h3>
<button id="seeTable">See in Table</button>
<button id="seeKanban">See in Kanban</button>
</div>
<script type="module" src="index.js"></script>
</body>
</html>