-
Notifications
You must be signed in to change notification settings - Fork 0
/
Todo_main.html
89 lines (68 loc) · 3.83 KB
/
Todo_main.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!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">
<title>Todo</title>
<link rel="shortcut icon" href="assets/images/new.png" type="image/x-icon">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" href="assets/css/loginstyle.css">
<link rel="stylesheet" href="assets/css/Homestyle.css">
<link rel="stylesheet" href="assets/css/todo.css">
<script src="https://unpkg.com/scrollreveal@4"></script>
</head>
<body background="assets/images/glenn2.jpg" onload="dateRefr()" >
<!-- nav bootstrap -->
<nav class="navbar navbar-expand-lg navbar-light sticky-top" id="navb">
<div class="container">
<a class="navbar-brand animate__animated animate__heartBeat" href="login.html">
<img src="assets/images/PinClipart.com_check-list-clip-art_5661943.png" alt="" width="30" height="40" >
<span class=" p-2" id="todotext">TODO LIST</span>
</a>
<button class="navbar-toggler bg-white" 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">
<ul class="navbar-nav me-auto mb-2 mb-lg-0" class= "d-flex">
<li class="nav-item">
<a class="nav-link active text-white" id="homebtn" aria-current="page" href="home.html">Home</a>
</li>
<li class="nav-item">
<u><a class="nav-link " id="todobtn" href="Todo_main.html" style="text-decoration: underline;">Todos</a></u>
</li>
<li class="nav-item">
<a class="nav-link " id="signoutbtn" href="login.html">SignOut</a>
</li>
</ul>
<p id="dateText"></p>
</div>
</div>
</nav>
<!-- nav boot end -->
<nav class="p-2" style="--bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='currentColor'/%3E%3C/svg%3E");" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item -white"><a href="home.html" class="text-white">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Todos</li>
</ol>
</nav>
<!-- table -->
<div class="container mt-4 " id="table">
<table class="table text-white table-dark text-center table-bordered" id="tbdata">
</table>
</div>
<!-- table end -->
<div class="text-center" id="progress">
<div class="spinner-border m-5 text-light" role="status" style="position: relative;top: 200px;width:5rem ;height: 5rem;">
<span class="visually-hidden">Loading...</span>
</div>
</div>
<script src="assets/js/login_script.js"></script>
<script src="assets/js/todo.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
</body>
</html>