From fbeebdd70c373d4374cee36061b8af854ef7f5f3 Mon Sep 17 00:00:00 2001 From: Riya Chauhan <96919050+Riyachauhan11@users.noreply.github.com> Date: Sat, 26 Oct 2024 18:24:47 +0530 Subject: [PATCH] added help center page (#285) * Created help centre page * added route to help centre page --- app.js | 6 ++ views/help.ejs | 205 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 211 insertions(+) create mode 100644 views/help.ejs diff --git a/app.js b/app.js index f3516e2..b0fbd89 100644 --- a/app.js +++ b/app.js @@ -371,6 +371,12 @@ app.get('/faq', (req, res) => { }); }); +app.get('/help', (req, res) => { + res.render('help', { + activeLink: 'help', // You can customize this based on your layout + }); +}); + app.get('/privacy-policy', (req, res) => { res.render('privacy-policy', { activeLink: 'privacy-policy', // You can customize this based on your layout diff --git a/views/help.ejs b/views/help.ejs new file mode 100644 index 0000000..6b21953 --- /dev/null +++ b/views/help.ejs @@ -0,0 +1,205 @@ + + + + <%- include('partials/head') %> + + + + + + + +
+ <%- include('partials/navbar') %> + +
+
+

Help Center

+

+ Welcome to our Help Center! Our website is designed to offer a + comprehensive platform where users can manage and interact with our + services efficiently. Whether you’re here to browse resources, manage + your account, or contact support, we are here to assist. +

+ +

What is This Site About?

+

+ Our platform is built to help users easily buy, sell, and find local + products and services. By connecting communities through ads, + listings, and an intuitive interface, our platform makes local + commerce accessible and convenient for everyone. Whether you're + looking for housing, services, or items for sale, we’re here to + connect you with your local community. +

+ +

Getting Started

+

+ New to our platform? Start by creating an account and exploring + features designed to help you easily buy, sell, and find local + products and services. Discover how to connect with your community + through our ads and listings, and make the most of our guides to learn + how to navigate each section effectively for a seamless experience. +

+ +
+
+ How do I reset my password? +
+
+ To reset your password, go to the login page and click on "Forgot + Password." Follow the instructions to reset your password through + your registered email. +
+
+ +
+
+ Where can I view my account settings? +
+
+ Navigate to your profile by clicking on your avatar in the top-right + corner, and select "Account Settings" from the dropdown menu. +
+
+ +
+
+ How do I contact customer support? +
+
+ You can reach our support team through the "Contact Us" page. Fill + in the form, and we will respond within 24-48 hours. +
+
+ + Contact Support +
+
+ + <%- include('partials/footer') %> <%- include('partials/bottom_nav') %> + + + +