diff --git a/Vivian/login.html b/Vivian/login.html
deleted file mode 100644
index 25f261c..0000000
--- a/Vivian/login.html
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
- Login Page
-
-
-
- Login
-
-
-
diff --git a/Vivian/login.js b/Vivian/login.js
deleted file mode 100644
index a88887f..0000000
--- a/Vivian/login.js
+++ /dev/null
@@ -1,37 +0,0 @@
-function validateForm() {
- var username = document.getElementById('email').value;
- var password = document.getElementById('password').value;
-
- // Perform basic validation
- if (!email || !password) {
- alert('Please enter both email and password');
- return;
- }
-
- // If validation passes, send data to the server
- sendDataToServer(email, password);
-}
-
-function sendDataToServer(email, password) {
- // Use AJAX or fetch to send data to the server
- // Example using fetch:
- fetch('/login', {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json',
- },
- body: JSON.stringify({ email, password }),
- })
- .then(response => response.json())
- .then(data => {
- // Handle the response from the server
- console.log(data);
- if (data.success) {
- // Redirect or perform other actions for successful login
- alert('Login successful');
- } else {
- alert('Login failed. Please check your credentials.');
- }
- })
- .catch(error => console.error('Error:', error));
-}
diff --git a/Vivian/signup.html b/Vivian/signup.html
deleted file mode 100644
index 28a7d84..0000000
--- a/Vivian/signup.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
- Signup Page
-
-
-
- Signup
-
-
-
diff --git a/Vivian/signup.js b/Vivian/signup.js
deleted file mode 100644
index 2f036a4..0000000
--- a/Vivian/signup.js
+++ /dev/null
@@ -1,35 +0,0 @@
-function validateForm() {
- var userid = document.getElementById('user_id').value;
- var username = document.getElementById('user_name').value;
- var email = document.getElementById('email').value;
- var password = document.getElementById('password').value;
- var confirmPassword = document.getElementById('confirmPassword').value;
- var email = document.getElementById('email').value;
-
- // Perform basic validation
- if (password !== confirmPassword) {
- alert('Passwords do not match');
- return;
- }
-
- // If validation passes, send data to the server
- sendDataToServer(username, email, password);
-}
-
-function sendDataToServer(username, password) {
- // Use AJAX or fetch to send data to the server
- // Example using fetch:
- fetch('/signup', {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json',
- },
- body: JSON.stringify({ username, email, password }),
- })
- .then(response => response.json())
- .then(data => {
- // Handle the response from the server
- console.log(data);
- })
- .catch(error => console.error('Error:', error));
-}
diff --git a/consumerWebsite/Vivian/eco saver.mwb b/consumerWebsite/Vivian/eco saver.mwb
deleted file mode 100644
index 563e07f..0000000
Binary files a/consumerWebsite/Vivian/eco saver.mwb and /dev/null differ
diff --git a/consumerWebsite/Vivian/index.php b/consumerWebsite/Vivian/index.php
deleted file mode 100644
index ba3725b..0000000
--- a/consumerWebsite/Vivian/index.php
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Hello, world!
-
-
- Hello, world!
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/consumerWebsite/Vivian/login.html b/consumerWebsite/Vivian/login.html
deleted file mode 100644
index 25f261c..0000000
--- a/consumerWebsite/Vivian/login.html
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
- Login Page
-
-
-
- Login
-
-
-
diff --git a/consumerWebsite/Vivian/server.js b/consumerWebsite/Vivian/server.js
deleted file mode 100644
index 6d8edc6..0000000
--- a/consumerWebsite/Vivian/server.js
+++ /dev/null
@@ -1,44 +0,0 @@
-const express = require('express');
-const bodyParser = require('body-parser');
-const mysql = require('mysql');
-
-const app = express();
-const port = 3000;
-
-app.use(bodyParser.json());
-
-const db = mysql.createConnection({
- host: 'localhost',
- user: 'root',
- password: 'your_mysql_password',
- database: 'your_database_name',
-});
-
-db.connect(err => {
- if (err) {
- console.error('Error connecting to MySQL:', err);
- } else {
- console.log('Connected to MySQL');
- }
-});
-
-app.post('/signup', (req, res) => {
- const { username, password } = req.body;
-
- // Perform server-side validation if needed
-
- const sql = 'INSERT INTO users (username, password) VALUES (?, ?)';
- db.query(sql, [username, password], (err, result) => {
- if (err) {
- console.error('Error executing SQL query:', err);
- res.status(500).json({ success: false, message: 'Internal Server Error' });
- } else {
- console.log('User signed up successfully');
- res.json({ success: true, message: 'User signed up successfully' });
- }
- });
-});
-
-app.listen(port, () => {
- console.log(`Server is running on http://localhost:${port}`);
-});
diff --git a/consumerWebsite/Vivian/signup.html b/consumerWebsite/Vivian/signup.html
deleted file mode 100644
index 28a7d84..0000000
--- a/consumerWebsite/Vivian/signup.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
- Signup Page
-
-
-
- Signup
-
-
-
diff --git a/consumerWebsite/Vivian/signup.js b/consumerWebsite/Vivian/signup.js
deleted file mode 100644
index 2f036a4..0000000
--- a/consumerWebsite/Vivian/signup.js
+++ /dev/null
@@ -1,35 +0,0 @@
-function validateForm() {
- var userid = document.getElementById('user_id').value;
- var username = document.getElementById('user_name').value;
- var email = document.getElementById('email').value;
- var password = document.getElementById('password').value;
- var confirmPassword = document.getElementById('confirmPassword').value;
- var email = document.getElementById('email').value;
-
- // Perform basic validation
- if (password !== confirmPassword) {
- alert('Passwords do not match');
- return;
- }
-
- // If validation passes, send data to the server
- sendDataToServer(username, email, password);
-}
-
-function sendDataToServer(username, password) {
- // Use AJAX or fetch to send data to the server
- // Example using fetch:
- fetch('/signup', {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json',
- },
- body: JSON.stringify({ username, email, password }),
- })
- .then(response => response.json())
- .then(data => {
- // Handle the response from the server
- console.log(data);
- })
- .catch(error => console.error('Error:', error));
-}
diff --git a/consumerWebsite/public/404.html b/consumerWebsite/public/404.html
index c78fd96..63805cf 100644
--- a/consumerWebsite/public/404.html
+++ b/consumerWebsite/public/404.html
@@ -1,11 +1,11 @@
+
- N & LW Lawn Care - Landscaping Bootstrap4 HTML5 Responsive Template
@@ -13,67 +13,42 @@
+
-
-
+
-
-
-
+
+
-
-