backend
This commit is contained in:
@@ -39,21 +39,46 @@ const $taskForm = document.getElementById('taskForm');
|
||||
const $toDoList = document.getElementById('toDoList');
|
||||
const $completedList = document.getElementById('completedList');
|
||||
|
||||
// RESET FORM
|
||||
function resetForm() {
|
||||
$taskForm.reset();
|
||||
};
|
||||
|
||||
// EVENT LISTENERS
|
||||
window.addEventListener("DOMContentLoaded", () => {
|
||||
displayTasks();
|
||||
})
|
||||
});
|
||||
|
||||
$taskForm.addEventListener("submit", (event) => {
|
||||
event.preventDefault();
|
||||
createNewTask();
|
||||
});
|
||||
|
||||
|
||||
[$toDoList, $completedList].forEach(list => {
|
||||
list.addEventListener("click", (event) => {
|
||||
if (
|
||||
event.target.classList.contains("done") ||
|
||||
event.target.classList.contains("notDone")
|
||||
) {
|
||||
toggleTaskStatus(event.target.dataset.id);
|
||||
}
|
||||
else if (event.target.classList.contains("delete")) {
|
||||
deleteTask(event.target.dataset.id);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
// DISPLAY TASKS
|
||||
|
||||
function displayTasks(){
|
||||
function displayTasks() {
|
||||
|
||||
function formatTask(task){
|
||||
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.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">
|
||||
@@ -64,14 +89,13 @@ function displayTasks(){
|
||||
<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>`
|
||||
: `
|
||||
${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>
|
||||
@@ -86,8 +110,44 @@ function displayTasks(){
|
||||
|
||||
tasks.forEach(task => {
|
||||
const formattedTask = formatTask(task);
|
||||
task.completed
|
||||
? $completedList.appendChild(formattedTask)
|
||||
task.completed
|
||||
? $completedList.appendChild(formattedTask)
|
||||
: $toDoList.appendChild(formattedTask)
|
||||
})
|
||||
resetForm();
|
||||
}
|
||||
|
||||
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()),
|
||||
}
|
||||
tasks.push(taskDetails);
|
||||
displayTasks();
|
||||
};
|
||||
|
||||
function toggleTaskStatus(taskId) {
|
||||
const task = tasks.find(task => task.id === Number(taskId));
|
||||
|
||||
if (task) {
|
||||
task.completed = !task.completed;
|
||||
displayTasks();
|
||||
}
|
||||
}
|
||||
|
||||
function deleteTask(taskId) {
|
||||
const taskIndex = tasks.findIndex(task => task.id == taskId);
|
||||
if (taskIndex !== -1) {
|
||||
tasks.splice(taskIndex, 1);
|
||||
}
|
||||
displayTasks();
|
||||
|
||||
}
|
||||
|
||||
function convertDate(dateString) {
|
||||
return new Date(dateString).toLocaleDateString("en-AU");
|
||||
}
|
||||
@@ -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 | Login</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 | Login</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>
|
||||
</html>
|
||||
<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>
|
||||
|
||||
</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 | Pricing</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 | Pricing</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 active" 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 active" 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>
|
||||
</html>
|
||||
<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>
|
||||
|
||||
</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 | Support</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 | Support</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 active" 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 active" 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>
|
||||
</html>
|
||||
<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>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user