test
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
backend\node_modules
|
||||
@@ -1,174 +1,120 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>To Do App | Dashboard</title>
|
||||
<link
|
||||
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css"
|
||||
rel="stylesheet"
|
||||
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB"
|
||||
crossorigin="anonymous"
|
||||
/>
|
||||
<link rel="stylesheet" href="./css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="./index.html">
|
||||
<img src="./images/logo.svg" alt="Logo" width="50" height="auto" />
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>To Do App | Dashboard</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet"
|
||||
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous" />
|
||||
<link rel="stylesheet" href="./css/styles.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="./index.html">
|
||||
<img src="./images/logo.svg" alt="Logo" width="50" height="auto" />
|
||||
</a>
|
||||
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
|
||||
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<img src="./images/Hamburger.svg" alt="hamburger icon" height="40px" width="auto" />
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav ms-auto text-end">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" aria-current="page" href="./index.html">Home</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./features.html">Features</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./pricing.html">Pricing</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./support.html">Support</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<main>
|
||||
<div class="bg-img dashboard py-5">
|
||||
<div class="d-flex justify-content-center flex-column align-items-center container">
|
||||
<div class="rounded shadow bg-translucent p-3 p-lg-5 col-12">
|
||||
<form id="taskForm" class="mb-5 text-white">
|
||||
<h1 id="greeting" class="mb-5 display-3">Your Dashboard</h1>
|
||||
<h2 class="mb-3">New Task</h2>
|
||||
<input id="taskName" name="taskName" placeholder="Task Name" class="mb-2 form-control shadow-sm" type="text"
|
||||
required />
|
||||
<textarea id="taskDescription" name="taskDescription" placeholder="Task Description"
|
||||
class="mb-2 form-control shadow-sm" rows="8" required></textarea>
|
||||
<input id="dueDate" name="dueDate" type="date" class="mb-3 form-control shadow-sm" required
|
||||
placeholder="Due Date" />
|
||||
<button type="submit" class="btn btn-primary shadow-sm px-5">
|
||||
Create Task
|
||||
</button>
|
||||
<div class="d-flex align-items-center gap-3 my-5">
|
||||
<label for="sortSelect" class="text-white">Sort by:</label>
|
||||
<select name="sortSelect" id="sortSelect" class="form-select w-auto shadow-none">
|
||||
<option value="default" selected>Default</option>
|
||||
<option value="dueDate">Due Date</option>
|
||||
<option value="dateCreate">Date Created</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="row text-white">
|
||||
<div class="col-12 col-lg-6 mb-4 mb-lg-0">
|
||||
<h2>To Do</h2>
|
||||
<ul id="toDoList" class="list-group"></ul>
|
||||
</div>
|
||||
<div class="col-12 col-lg-6">
|
||||
<h2>Completed</h2>
|
||||
<ul id="completedList" class="list-group"></ul>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!-- ↓ Footer ↓ -->
|
||||
<footer>
|
||||
<div class="py-5 container">
|
||||
<div class="d-flex justify-content-between flex-column gap-5 gap-md-0 flex-md-row align-items-center px-3 mb-5">
|
||||
<a href="./index.html">
|
||||
<img src="./images/logo.svg" alt="logo" height="100px" width="auto" />
|
||||
</a>
|
||||
|
||||
<button
|
||||
class="navbar-toggler"
|
||||
type="button"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-target="#navbarNav"
|
||||
aria-controls="navbarNav"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation"
|
||||
>
|
||||
<img
|
||||
src="./images/Hamburger.svg"
|
||||
alt="hamburger icon"
|
||||
height="40px"
|
||||
width="auto"
|
||||
/>
|
||||
</button>
|
||||
<div class="col-12 col-sm-8 col-md-7 col-lg-5 col-xl-4">
|
||||
<h3 class="text-white mb-3 text-center text-md-start">
|
||||
Subscribe to our Newsletter
|
||||
</h3>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav ms-auto text-end">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" aria-current="page" href="./index.html"
|
||||
>Home</a
|
||||
>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./features.html">Features</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./pricing.html">Pricing</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./support.html">Support</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="input-group">
|
||||
<input placeholder="Enter your email" type="email" class="form-control" />
|
||||
|
||||
<main>
|
||||
<div class="bg-img dashboard py-5">
|
||||
<div
|
||||
class="d-flex justify-content-center flex-column align-items-center container"
|
||||
>
|
||||
<div class="rounded shadow bg-translucent p-3 p-lg-5 col-12">
|
||||
<form id="taskForm" class="mb-5 text-white">
|
||||
<h1 id="greeting" class="mb-5 display-3">Your Dashboard</h1>
|
||||
<h2 class="mb-3">New Task</h2>
|
||||
<input
|
||||
id="taskName"
|
||||
name="taskName"
|
||||
placeholder="Task Name"
|
||||
class="mb-2 form-control shadow-sm"
|
||||
type="text"
|
||||
required
|
||||
/>
|
||||
<textarea
|
||||
id="taskDescription"
|
||||
name="taskDescription"
|
||||
placeholder="Task Description"
|
||||
class="mb-2 form-control shadow-sm"
|
||||
rows="8"
|
||||
required
|
||||
></textarea>
|
||||
<input
|
||||
id="dueDate"
|
||||
name="dueDate"
|
||||
type="date"
|
||||
class="mb-3 form-control shadow-sm"
|
||||
required
|
||||
placeholder="Due Date"
|
||||
/>
|
||||
<button type="submit" class="btn btn-primary shadow-sm px-5">
|
||||
Create Task
|
||||
</button>
|
||||
<div class="d-flex align-items-center gap-3 my-5">
|
||||
<label for="sortSelect" class="text-white">Sort by:</label>
|
||||
<select
|
||||
name="sortSelect"
|
||||
id="sortSelect"
|
||||
class="form-select w-auto shadow-none"
|
||||
>
|
||||
<option value="default" selected>Default</option>
|
||||
<option value="dueDate">Due Date</option>
|
||||
<option value="dateCreate">Date Created</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="row text-white">
|
||||
<div class="col-12 col-lg-6 mb-4 mb-lg-0">
|
||||
<h2>To Do</h2>
|
||||
<ul id="toDoList" class="list-group"></ul>
|
||||
</div>
|
||||
<div class="col-12 col-lg-6">
|
||||
<h2>Completed</h2>
|
||||
<ul id="completedList" class="list-group"></ul>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<button class="btn btn-primary">Subscribe</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!-- ↓ Footer ↓ -->
|
||||
<footer>
|
||||
<div class="py-5 container">
|
||||
<div
|
||||
class="d-flex justify-content-between flex-column gap-5 gap-md-0 flex-md-row align-items-center px-3 mb-5"
|
||||
>
|
||||
<a href="./index.html">
|
||||
<img
|
||||
src="./images/logo.svg"
|
||||
alt="logo"
|
||||
height="100px"
|
||||
width="auto"
|
||||
/>
|
||||
</a>
|
||||
|
||||
<div class="col-12 col-sm-8 col-md-7 col-lg-5 col-xl-4">
|
||||
<h3 class="text-white mb-3 text-center text-md-start">
|
||||
Subscribe to our Newsletter
|
||||
</h3>
|
||||
|
||||
<div class="input-group">
|
||||
<input
|
||||
placeholder="Enter your email"
|
||||
type="email"
|
||||
class="form-control"
|
||||
/>
|
||||
|
||||
<button class="btn btn-primary">Subscribe</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="d-flex justify-content-center flex-column gap-3 flex-md-row align-items-center"
|
||||
>
|
||||
<a class="nav-link" href="#">Privacy Policy</a>
|
||||
<p class="m-0 d-none d-md-block">|</p>
|
||||
<a class="nav-link" href="#">Terms of Service</a>
|
||||
<p class="mb-0 me-3 d-none d-md-block">|</p>
|
||||
<p class="m-0">BucketList © 2025 All Rights Reserved</p>
|
||||
</div>
|
||||
<div class="d-flex justify-content-center flex-column gap-3 flex-md-row align-items-center">
|
||||
<a class="nav-link" href="#">Privacy Policy</a>
|
||||
<p class="m-0 d-none d-md-block">|</p>
|
||||
<a class="nav-link" href="#">Terms of Service</a>
|
||||
<p class="mb-0 me-3 d-none d-md-block">|</p>
|
||||
<p class="m-0">BucketLisk © 2025 All Rights Reserved</p>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="./js/api.js"></script>
|
||||
<script
|
||||
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
|
||||
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
|
||||
crossorigin="anonymous"
|
||||
></script>
|
||||
</body>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="./js/api.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
|
||||
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
|
||||
crossorigin="anonymous"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,131 +1,94 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>To Do App | Features</title>
|
||||
<link
|
||||
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css"
|
||||
rel="stylesheet"
|
||||
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB"
|
||||
crossorigin="anonymous"
|
||||
/>
|
||||
<link rel="stylesheet" href="./css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="./index.html">
|
||||
<img src="./images/logo.svg" alt="Logo" width="50" height="auto" />
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>To Do App | Features</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet"
|
||||
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous" />
|
||||
<link rel="stylesheet" href="./css/styles.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="./index.html">
|
||||
<img src="./images/logo.svg" alt="Logo" width="50" height="auto" />
|
||||
</a>
|
||||
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
|
||||
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<img src="./images/Hamburger.svg" alt="hamburger icon" height="40px" width="auto" />
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav ms-auto text-end">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" aria-current="page" href="./index.html">Home</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" href="./features.html">Features</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./pricing.html">Pricing</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./support.html">Support</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- ↓ Page not ready ↓ -->
|
||||
<section class="bg-img d-flex justify-content-center align-items-center support py-5">
|
||||
<div class="container text-center text-white py-5">
|
||||
<img src="./images/Construction.svg" alt="Under Construction" height="150px" width="auto" />
|
||||
|
||||
<h2 class="mt-5">Page under construction. Check back later!</h2>
|
||||
|
||||
<div class="mt-5">
|
||||
<a href="./index.html" class="btn btn-primary px-4">Go Home</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- ↑ Page not ready ↑ -->
|
||||
|
||||
<!-- ↓ Footer ↓ -->
|
||||
<footer>
|
||||
<div class="py-5 container">
|
||||
<div class="d-flex justify-content-between flex-column gap-5 gap-md-0 flex-md-row align-items-center px-3 mb-5">
|
||||
<a href="./index.html">
|
||||
<img src="./images/logo.svg" alt="logo" height="100px" width="auto" />
|
||||
</a>
|
||||
|
||||
<button
|
||||
class="navbar-toggler"
|
||||
type="button"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-target="#navbarNav"
|
||||
aria-controls="navbarNav"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation"
|
||||
>
|
||||
<img
|
||||
src="./images/Hamburger.svg"
|
||||
alt="hamburger icon"
|
||||
height="40px"
|
||||
width="auto"
|
||||
/>
|
||||
</button>
|
||||
<div class="col-12 col-sm-8 col-md-7 col-lg-5 col-xl-4">
|
||||
<h3 class="text-white mb-3 text-center text-md-start">
|
||||
Subscribe to our Newsletter
|
||||
</h3>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav ms-auto text-end">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" aria-current="page" href="./index.html"
|
||||
>Home</a
|
||||
>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" href="./features.html">Features</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./pricing.html">Pricing</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./support.html">Support</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="input-group">
|
||||
<input placeholder="Enter your email" type="email" class="form-control" />
|
||||
|
||||
<!-- ↓ Page not ready ↓ -->
|
||||
<section
|
||||
class="bg-img d-flex justify-content-center align-items-center support py-5"
|
||||
>
|
||||
<div class="container text-center text-white py-5">
|
||||
<img
|
||||
src="./images/Construction.svg"
|
||||
alt="Under Construction"
|
||||
height="150px"
|
||||
width="auto"
|
||||
/>
|
||||
|
||||
<h2 class="mt-5">Page under construction. Check back later!</h2>
|
||||
|
||||
<div class="mt-5">
|
||||
<a href="./index.html" class="btn btn-primary px-4">Go Home</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- ↑ Page not ready ↑ -->
|
||||
|
||||
<!-- ↓ Footer ↓ -->
|
||||
<footer>
|
||||
<div class="py-5 container">
|
||||
<div
|
||||
class="d-flex justify-content-between flex-column gap-5 gap-md-0 flex-md-row align-items-center px-3 mb-5"
|
||||
>
|
||||
<a href="./index.html">
|
||||
<img
|
||||
src="./images/logo.svg"
|
||||
alt="logo"
|
||||
height="100px"
|
||||
width="auto"
|
||||
/>
|
||||
</a>
|
||||
|
||||
<div class="col-12 col-sm-8 col-md-7 col-lg-5 col-xl-4">
|
||||
<h3 class="text-white mb-3 text-center text-md-start">
|
||||
Subscribe to our Newsletter
|
||||
</h3>
|
||||
|
||||
<div class="input-group">
|
||||
<input
|
||||
placeholder="Enter your email"
|
||||
type="email"
|
||||
class="form-control"
|
||||
/>
|
||||
|
||||
<button class="btn btn-primary">Subscribe</button>
|
||||
</div>
|
||||
<button class="btn btn-primary">Subscribe</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="d-flex justify-content-center flex-column gap-3 flex-md-row align-items-center"
|
||||
>
|
||||
<a class="nav-link" href="#">Privacy Policy</a>
|
||||
<p class="m-0 d-none d-md-block">|</p>
|
||||
<a class="nav-link" href="#">Terms of Service</a>
|
||||
<p class="mb-0 me-3 d-none d-md-block">|</p>
|
||||
<p class="m-0">BucketList © 2025 All Rights Reserved</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script
|
||||
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
|
||||
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
|
||||
crossorigin="anonymous"
|
||||
></script>
|
||||
</body>
|
||||
<div class="d-flex justify-content-center flex-column gap-3 flex-md-row align-items-center">
|
||||
<a class="nav-link" href="#">Privacy Policy</a>
|
||||
<p class="m-0 d-none d-md-block">|</p>
|
||||
<a class="nav-link" href="#">Terms of Service</a>
|
||||
<p class="mb-0 me-3 d-none d-md-block">|</p>
|
||||
<p class="m-0">BucketLisk © 2025 All Rights Reserved</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
|
||||
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
|
||||
crossorigin="anonymous"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,125 +1,91 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>To Do App | Home</title>
|
||||
<link
|
||||
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css"
|
||||
rel="stylesheet"
|
||||
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB"
|
||||
crossorigin="anonymous"
|
||||
/>
|
||||
<link rel="stylesheet" href="./css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="./index.html">
|
||||
<img src="./images/logo.svg" alt="Logo" width="50" height="auto" />
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>To Do App | Home</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet"
|
||||
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous" />
|
||||
<link rel="stylesheet" href="./css/styles.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="./index.html">
|
||||
<img src="./images/logo.svg" alt="Logo" width="50" height="auto" />
|
||||
</a>
|
||||
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
|
||||
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<img src="./images/Hamburger.svg" alt="hamburger icon" height="40px" width="auto" />
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav ms-auto text-end">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" aria-current="page" href="./index.html">Home</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./features.html">Features</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./pricing.html">Pricing</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./support.html">Support</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- ↓ Page not ready ↓ -->
|
||||
<main class="d-flex justify-content-center flex-column align-items-center bg-img">
|
||||
<h1 class="display-2 text-center text-white">
|
||||
Stay organised with BucketLisk
|
||||
</h1>
|
||||
<div class="d-flex justify-content-center align-items-center mt-5">
|
||||
<a href="./dashboard.html" class="btn btn-primary btn-lg px-5">Try it for free</a>
|
||||
</div>
|
||||
</main>
|
||||
<!-- ↑ Page not ready ↑ -->
|
||||
|
||||
<!-- ↓ Footer ↓ -->
|
||||
<footer>
|
||||
<div class="py-5 container">
|
||||
<div class="d-flex justify-content-between flex-column gap-5 gap-md-0 flex-md-row align-items-center px-3 mb-5">
|
||||
<a href="./index.html">
|
||||
<img src="./images/logo.svg" alt="logo" height="100px" width="auto" />
|
||||
</a>
|
||||
|
||||
<button
|
||||
class="navbar-toggler"
|
||||
type="button"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-target="#navbarNav"
|
||||
aria-controls="navbarNav"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation"
|
||||
>
|
||||
<img
|
||||
src="./images/Hamburger.svg"
|
||||
alt="hamburger icon"
|
||||
height="40px"
|
||||
width="auto"
|
||||
/>
|
||||
</button>
|
||||
<div class="col-12 col-sm-8 col-md-7 col-lg-5 col-xl-4">
|
||||
<h3 class="text-white mb-3 text-center text-md-start">
|
||||
Subscribe to our Newsletter
|
||||
</h3>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav ms-auto text-end">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" aria-current="page" href="./index.html"
|
||||
>Home</a
|
||||
>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./features.html">Features</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./pricing.html">Pricing</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./support.html">Support</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="input-group">
|
||||
<input placeholder="Enter your email" type="email" class="form-control" />
|
||||
|
||||
<!-- ↓ Page not ready ↓ -->
|
||||
<main
|
||||
class="d-flex justify-content-center flex-column align-items-center bg-img"
|
||||
>
|
||||
<h1 class="display-2 text-center text-white">
|
||||
Stay origansed with BucketList
|
||||
</h1>
|
||||
<div class="d-flex justify-content-center align-items-center mt-5">
|
||||
<a href="./dashboard.html" class="btn btn-primary btn-lg px-5"
|
||||
>Try it for free</a
|
||||
>
|
||||
</div>
|
||||
</main>
|
||||
<!-- ↑ Page not ready ↑ -->
|
||||
|
||||
<!-- ↓ Footer ↓ -->
|
||||
<footer>
|
||||
<div class="py-5 container">
|
||||
<div
|
||||
class="d-flex justify-content-between flex-column gap-5 gap-md-0 flex-md-row align-items-center px-3 mb-5"
|
||||
>
|
||||
<a href="./index.html">
|
||||
<img
|
||||
src="./images/logo.svg"
|
||||
alt="logo"
|
||||
height="100px"
|
||||
width="auto"
|
||||
/>
|
||||
</a>
|
||||
|
||||
<div class="col-12 col-sm-8 col-md-7 col-lg-5 col-xl-4">
|
||||
<h3 class="text-white mb-3 text-center text-md-start">
|
||||
Subscribe to our Newsletter
|
||||
</h3>
|
||||
|
||||
<div class="input-group">
|
||||
<input
|
||||
placeholder="Enter your email"
|
||||
type="email"
|
||||
class="form-control"
|
||||
/>
|
||||
|
||||
<button class="btn btn-primary">Subscribe</button>
|
||||
</div>
|
||||
<button class="btn btn-primary">Subscribe</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="d-flex justify-content-center flex-column gap-3 flex-md-row align-items-center"
|
||||
>
|
||||
<a class="nav-link" href="#">Privacy Policy</a>
|
||||
<p class="m-0 d-none d-md-block">|</p>
|
||||
<a class="nav-link" href="#">Terms of Service</a>
|
||||
<p class="mb-0 me-3 d-none d-md-block">|</p>
|
||||
<p class="m-0">BucketList © 2025 All Rights Reserved</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script
|
||||
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
|
||||
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
|
||||
crossorigin="anonymous"
|
||||
></script>
|
||||
</body>
|
||||
<div class="d-flex justify-content-center flex-column gap-3 flex-md-row align-items-center">
|
||||
<a class="nav-link" href="#">Privacy Policy</a>
|
||||
<p class="m-0 d-none d-md-block">|</p>
|
||||
<a class="nav-link" href="#">Terms of Service</a>
|
||||
<p class="mb-0 me-3 d-none d-md-block">|</p>
|
||||
<p class="m-0">BucketLisk © 2025 All Rights Reserved</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
|
||||
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
|
||||
crossorigin="anonymous"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,38 +1,3 @@
|
||||
const tasks = [
|
||||
{
|
||||
id: 1,
|
||||
completed: false,
|
||||
title: "Buy groceries for the week",
|
||||
description: "Pick up vegetables, fruits, milk, eggs, and bread from the supermarket.",
|
||||
dueDate: "14/03/2026",
|
||||
dateCreated: new Date(Date.now()).toLocaleDateString("en-AU")
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
completed: false,
|
||||
title: "Clean the apartment",
|
||||
description: "Vacuum the floors, wipe kitchen surfaces, and take out the trash.",
|
||||
dueDate: "16/03/2026",
|
||||
dateCreated: new Date(Date.now()).toLocaleDateString("en-AU")
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
completed: false,
|
||||
title: "Call the dentist for appointment",
|
||||
description: "Book a routine checkup and confirm available time slots for next week.",
|
||||
dueDate: "17/03/2026",
|
||||
dateCreated: new Date(Date.now()).toLocaleDateString("en-AU")
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
completed: true,
|
||||
title: "Do laundry and fold clothes",
|
||||
description: "Wash dark and light loads separately, then fold and organize clean clothes.",
|
||||
dueDate: "21/03/2026",
|
||||
dateCreated: new Date(Date.now()).toLocaleDateString("en-AU")
|
||||
}
|
||||
];
|
||||
|
||||
// GLOBALS
|
||||
|
||||
const $taskForm = document.getElementById('taskForm');
|
||||
@@ -68,66 +33,117 @@ $taskForm.addEventListener("submit", (event) => {
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
// DISPLAY TASKS
|
||||
|
||||
function displayTasks() {
|
||||
|
||||
function formatTask(task) {
|
||||
const li = document.createElement("li");
|
||||
|
||||
li.classList.add('card', 'p-3', 'mt-2');
|
||||
const done = task.completed
|
||||
? "text-decoration-line-through opacity-50"
|
||||
: "";
|
||||
li.innerHTML = `
|
||||
<div class="d-flex justify-content-between align-items-start">
|
||||
<h4 class="${done} col-11">${task.title}</h4>
|
||||
<button data-id="${task.id}" type="button" class="btn-close delete" aria-label="Close"></button>
|
||||
</div>
|
||||
<p class="${done}">${task.description}</p>
|
||||
<p class="${done}"><strong>Due: </strong>${task.dueDate}</p>
|
||||
<div class="d-flex justify-content-between align-items-end">
|
||||
<div>
|
||||
${task.completed
|
||||
? `<button data-id="${task.id}" class="btn btn-primary shadow-sm notDone" type="button">Not done</button>`
|
||||
: `
|
||||
<button data-id="${task.id}" class="btn btn-primary shadow-sm edit" type="button">Edit</button>
|
||||
<button data-id="${task.id}" class="btn btn-primary shadow-sm done" type="button">Done</button>
|
||||
`
|
||||
}
|
||||
</div>
|
||||
<p class="m-0 ${done}"><strong>Created on: </strong>${task.dateCreated}</p>
|
||||
</div>
|
||||
`;
|
||||
|
||||
return li;
|
||||
|
||||
}
|
||||
|
||||
$toDoList.innerHTML = "";
|
||||
$completedList.innerHTML = "";
|
||||
|
||||
tasks.forEach(task => {
|
||||
const formattedTask = formatTask(task);
|
||||
task.completed
|
||||
? $completedList.appendChild(formattedTask)
|
||||
: $toDoList.appendChild(formattedTask)
|
||||
})
|
||||
resetForm();
|
||||
// EXAMPLE API
|
||||
async function exampleAPI() {
|
||||
const response = await fetch("http://localhost:3001/test");
|
||||
const data = await response.text();
|
||||
console.log(data);
|
||||
}
|
||||
|
||||
function createNewTask() {
|
||||
const taskDetails = {
|
||||
id: tasks.length + 1,
|
||||
completed: false,
|
||||
title: $taskForm.taskName.value,
|
||||
description: $taskForm.taskDescription.value,
|
||||
dueDate: convertDate($taskForm.dueDate.value),
|
||||
dateCreated: convertDate(Date.now()),
|
||||
exampleAPI();
|
||||
// DISPLAY TASKS
|
||||
|
||||
async function displayTasks() {
|
||||
|
||||
const response = await fetch("http://localhost:3001/api/tasks")
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error(`Failed to get tasks: ${response.status}`);
|
||||
}
|
||||
tasks.push(taskDetails);
|
||||
displayTasks();
|
||||
|
||||
const data = await response.json();
|
||||
|
||||
try {
|
||||
function formatTask(task) {
|
||||
const li = document.createElement("li");
|
||||
|
||||
li.classList.add('card', 'p-3', 'mt-2');
|
||||
const done = task.completed
|
||||
? "text-decoration-line-through opacity-50"
|
||||
: "";
|
||||
li.innerHTML = `
|
||||
<div class="d-flex justify-content-between align-items-start">
|
||||
<h4 class="${done} col-11">${task.title}</h4>
|
||||
<button data-id="${task.id}" type="button" class="btn-close delete" aria-label="Close"></button>
|
||||
</div>
|
||||
<p class="${done}">${task.description}</p>
|
||||
<p class="${done}"><strong>Due: </strong>${task.dueDate}</p>
|
||||
<div class="d-flex justify-content-between align-items-end">
|
||||
<div>
|
||||
${task.completed
|
||||
? `<button data-id="${task.id}" class="btn btn-primary shadow-sm notDone" type="button">Not done</button>`
|
||||
: `
|
||||
<button data-id="${task.id}" class="btn btn-primary shadow-sm edit" type="button">Edit</button>
|
||||
<button data-id="${task.id}" class="btn btn-primary shadow-sm done" type="button">Done</button>
|
||||
`
|
||||
}
|
||||
</div>
|
||||
<p class="m-0 ${done}"><strong>Created on: </strong>${task.dateCreated}</p>
|
||||
</div>
|
||||
`;
|
||||
|
||||
return li;
|
||||
|
||||
}
|
||||
|
||||
$toDoList.innerHTML = "";
|
||||
$completedList.innerHTML = "";
|
||||
|
||||
const tasks = Array.isArray(data) ? data : [];
|
||||
|
||||
if (!Array.isArray(data)) {
|
||||
console.error("ERROR: Expected an array of tasks from /api/tasks", data);
|
||||
}
|
||||
|
||||
tasks.forEach(task => {
|
||||
const formattedTask = formatTask(task);
|
||||
task.completed
|
||||
? $completedList.appendChild(formattedTask)
|
||||
: $toDoList.appendChild(formattedTask)
|
||||
})
|
||||
resetForm();
|
||||
|
||||
} catch (error) {
|
||||
console.error(`ERROR: ${error}`);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
async function createNewTask() {
|
||||
const taskDetails = {
|
||||
title: $taskForm.taskName.value.trim(),
|
||||
description: $taskForm.taskDescription.value.trim(),
|
||||
dueDate: $taskForm.dueDate.value,
|
||||
}
|
||||
if (!taskDetails.title || !taskDetails.description || !taskDetails.dueDate) {
|
||||
alert("Please fill in all fields");
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
const response = await fetch("http://localhost:3001/api/tasks/todo", {
|
||||
method: "POST",
|
||||
headers: {
|
||||
"Content-Type": "application/json"
|
||||
},
|
||||
body: JSON.stringify(taskDetails)
|
||||
});
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error(`Failed to create task: ${response.status}`);
|
||||
}
|
||||
|
||||
const data = await response.json();
|
||||
console.log("Task created:", data);
|
||||
displayTasks();
|
||||
|
||||
|
||||
}
|
||||
catch (error) {
|
||||
console.error(`ERROR: ${error}`);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
function toggleTaskStatus(taskId) {
|
||||
|
||||
@@ -81,7 +81,7 @@
|
||||
<p class="m-0 d-none d-md-block">|</p>
|
||||
<a class="nav-link" href="#">Terms of Service</a>
|
||||
<p class="mb-0 me-3 d-none d-md-block">|</p>
|
||||
<p class="m-0">BucketList © 2025 All Rights Reserved</p>
|
||||
<p class="m-0">BucketLisk © 2025 All Rights Reserved</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
@@ -81,7 +81,7 @@
|
||||
<p class="m-0 d-none d-md-block">|</p>
|
||||
<a class="nav-link" href="#">Terms of Service</a>
|
||||
<p class="mb-0 me-3 d-none d-md-block">|</p>
|
||||
<p class="m-0">BucketList © 2025 All Rights Reserved</p>
|
||||
<p class="m-0">BucketLisk © 2025 All Rights Reserved</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
@@ -1,131 +1,94 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>To Do App | Signup</title>
|
||||
<link
|
||||
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css"
|
||||
rel="stylesheet"
|
||||
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB"
|
||||
crossorigin="anonymous"
|
||||
/>
|
||||
<link rel="stylesheet" href="./css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="./index.html">
|
||||
<img src="./images/logo.svg" alt="Logo" width="50" height="auto" />
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>To Do App | Signup</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet"
|
||||
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous" />
|
||||
<link rel="stylesheet" href="./css/styles.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="./index.html">
|
||||
<img src="./images/logo.svg" alt="Logo" width="50" height="auto" />
|
||||
</a>
|
||||
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
|
||||
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<img src="./images/Hamburger.svg" alt="hamburger icon" height="40px" width="auto" />
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav ms-auto text-end">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" aria-current="page" href="./index.html">Home</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./features.html">Features</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./pricing.html">Pricing</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./support.html">Support</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- ↓ Page not ready ↓ -->
|
||||
<section class="bg-img d-flex justify-content-center align-items-center support py-5">
|
||||
<div class="container text-center text-white py-5">
|
||||
<img src="./images/Construction.svg" alt="Under Construction" height="150px" width="auto" />
|
||||
|
||||
<h2 class="mt-5">Page under construction. Check back later!</h2>
|
||||
|
||||
<div class="mt-5">
|
||||
<a href="./index.html" class="btn btn-primary px-4">Go Home</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- ↑ Page not ready ↑ -->
|
||||
|
||||
<!-- ↓ Footer ↓ -->
|
||||
<footer>
|
||||
<div class="py-5 container">
|
||||
<div class="d-flex justify-content-between flex-column gap-5 gap-md-0 flex-md-row align-items-center px-3 mb-5">
|
||||
<a href="./index.html">
|
||||
<img src="./images/logo.svg" alt="logo" height="100px" width="auto" />
|
||||
</a>
|
||||
|
||||
<button
|
||||
class="navbar-toggler"
|
||||
type="button"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-target="#navbarNav"
|
||||
aria-controls="navbarNav"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation"
|
||||
>
|
||||
<img
|
||||
src="./images/Hamburger.svg"
|
||||
alt="hamburger icon"
|
||||
height="40px"
|
||||
width="auto"
|
||||
/>
|
||||
</button>
|
||||
<div class="col-12 col-sm-8 col-md-7 col-lg-5 col-xl-4">
|
||||
<h3 class="text-white mb-3 text-center text-md-start">
|
||||
Subscribe to our Newsletter
|
||||
</h3>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav ms-auto text-end">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" aria-current="page" href="./index.html"
|
||||
>Home</a
|
||||
>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./features.html">Features</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./pricing.html">Pricing</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="./support.html">Support</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="input-group">
|
||||
<input placeholder="Enter your email" type="email" class="form-control" />
|
||||
|
||||
<!-- ↓ Page not ready ↓ -->
|
||||
<section
|
||||
class="bg-img d-flex justify-content-center align-items-center support py-5"
|
||||
>
|
||||
<div class="container text-center text-white py-5">
|
||||
<img
|
||||
src="./images/Construction.svg"
|
||||
alt="Under Construction"
|
||||
height="150px"
|
||||
width="auto"
|
||||
/>
|
||||
|
||||
<h2 class="mt-5">Page under construction. Check back later!</h2>
|
||||
|
||||
<div class="mt-5">
|
||||
<a href="./index.html" class="btn btn-primary px-4">Go Home</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- ↑ Page not ready ↑ -->
|
||||
|
||||
<!-- ↓ Footer ↓ -->
|
||||
<footer>
|
||||
<div class="py-5 container">
|
||||
<div
|
||||
class="d-flex justify-content-between flex-column gap-5 gap-md-0 flex-md-row align-items-center px-3 mb-5"
|
||||
>
|
||||
<a href="./index.html">
|
||||
<img
|
||||
src="./images/logo.svg"
|
||||
alt="logo"
|
||||
height="100px"
|
||||
width="auto"
|
||||
/>
|
||||
</a>
|
||||
|
||||
<div class="col-12 col-sm-8 col-md-7 col-lg-5 col-xl-4">
|
||||
<h3 class="text-white mb-3 text-center text-md-start">
|
||||
Subscribe to our Newsletter
|
||||
</h3>
|
||||
|
||||
<div class="input-group">
|
||||
<input
|
||||
placeholder="Enter your email"
|
||||
type="email"
|
||||
class="form-control"
|
||||
/>
|
||||
|
||||
<button class="btn btn-primary">Subscribe</button>
|
||||
</div>
|
||||
<button class="btn btn-primary">Subscribe</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="d-flex justify-content-center flex-column gap-3 flex-md-row align-items-center"
|
||||
>
|
||||
<a class="nav-link" href="#">Privacy Policy</a>
|
||||
<p class="m-0 d-none d-md-block">|</p>
|
||||
<a class="nav-link" href="#">Terms of Service</a>
|
||||
<p class="mb-0 me-3 d-none d-md-block">|</p>
|
||||
<p class="m-0">BucketList © 2025 All Rights Reserved</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script
|
||||
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
|
||||
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
|
||||
crossorigin="anonymous"
|
||||
></script>
|
||||
</body>
|
||||
<div class="d-flex justify-content-center flex-column gap-3 flex-md-row align-items-center">
|
||||
<a class="nav-link" href="#">Privacy Policy</a>
|
||||
<p class="m-0 d-none d-md-block">|</p>
|
||||
<a class="nav-link" href="#">Terms of Service</a>
|
||||
<p class="mb-0 me-3 d-none d-md-block">|</p>
|
||||
<p class="m-0">BucketLisk © 2025 All Rights Reserved</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
|
||||
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
|
||||
crossorigin="anonymous"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -81,7 +81,7 @@
|
||||
<p class="m-0 d-none d-md-block">|</p>
|
||||
<a class="nav-link" href="#">Terms of Service</a>
|
||||
<p class="mb-0 me-3 d-none d-md-block">|</p>
|
||||
<p class="m-0">BucketList © 2025 All Rights Reserved</p>
|
||||
<p class="m-0">BucketLisk © 2025 All Rights Reserved</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
Reference in New Issue
Block a user