-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.html
47 lines (40 loc) · 2.67 KB
/
todo.html
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
<!DOCTYPE html>
<html lang="en">
<head></head>
<title>ToDo</title>
</head>
<body onload="ajax();">
<div class="navcont">
<nav class="navbar navbar-expand-lg navbar-light bg-dark bg-gradient" style="opacity:1; background-clip: padding-box;">
<div class="container-fluid">
<header style="padding-left:3.5%"><img src="images/logosmall.png" alt="logo" ></header> <!-- Could also use the navbar brand class to specify logo -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<div style="padding-left: 35%;">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item" >
<h4><a class="nav-link " aria-current="page" href="index.html" tabindex="-1">Logout</a></h4>
</li>
<li class="nav-item">
<h4><a class="nav-link active" href="todo.html" tabindex="-1" aria-disabled="false">Todo List</a></h4>
</li>
</ul>
</div>
</div>
</div>
</nav>
</div>
<div id="demo">
<!-- <button id="btn" onclick="ajax();">Get your Todolist here</button> -->
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-KsvD1yqQ1/1+IA7gi3P0tyJcT3vR+NdBTt13hSJ2lnve8agRGXTTyNaBYmCR/Nwi" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-nsg8ua9HAw1y0W1btsyWgBklPnCUAFLuTMS2G72MMONqmOymq585AcH49TLBQObG" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./css/todo.css">
<script src="./js/newtodo.js"></script>
</body>
</html>