-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
55 lines (44 loc) · 1.58 KB
/
Copy pathdashboard.html
File metadata and controls
55 lines (44 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Welcome to your ToDo Dashboard!</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/stylesheet.css">
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-sm mynav justify-content-center">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#" style="color: white; font-weight: bold;">ToDo List</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" onclick="window.location.replace('index.html');">Log Out</a>
</li>
</ul>
</nav>
<br>
<div class="container-fluid">
<h3>Simple ToDoList Web Application </h3>
<p>Keep a track of your tasks to be completed with our ToDo Web App. Tick the tasks you've completed to make sure it is tracked. <br><br>Your goal for today is to complete five tasks!</p><br><br>
</div>
<div class="container module">
<div class="row inner">
<div class="col-md-12">
<div class="col-md-2"></div>
<div class="col-md-11">
<div id="mytable">
</div>
<br><br>
</div>
</div>
</div>
</div>
<footer>Copyright @ Fuzaila</footer>
<script type="text/javascript" src="index.js"></script>
</body>
</html>