Skip to main content

Car Company website Proposal Document.

 Car Company Website Proposal Document.

What this website offers and give value to company and its customers.

This site will showcase the products (vehicles) with simple and sleek design. It will show high impact vehicles images. The specification of vehicle which user can easily understand and make comparisons. 

Features of this website both Front-End and Back-End side.

Front-End Features

1. Landing page of website

1.1 This page will display classy look of the web design by showcasing different vehicle high resolution images.

1.2 Overview of all Services the company offering to their valuable customers

1.3 Testimonials

Client feedback on your services and satisfaction with vehicle which build long term value to company and customer relationship.

1.4 Window Pop-up for showing  sales and events or any news.

2. Pages on this website

2.1 Services Page

This page will demonstrate number of Maintenance Services of vehicles this company offers.

Now there are two types of services.

 2.1.1 At DOOR STEP service: Customer book appointment than company send technicians to give any sort of service for your vehicle. List of services will be displayed with their prices.

2.1.2 In Company Service: The customer book appointment than on particular date/time, the owner take his vehicle to campany's factory shop to avail his booked services. List of services will be displayed with their prices.

2.2 Get Feedback page

2.3 FAQ page (customer frequently asked questions and their answers)

2.4 Book appointments page for getting services.

2.5 Contact us page

2.6 About us page (company short history).

Back-End Features.

1. Authentication system

1.1 Admin can logon and access the authorize admin dashboard and its all features.

1.2 Customer login system, So Admin can track its all previous record of appointments and his personal details.

1.3 Password Reset Feature

1.4 Password Forgot Feature

1.5 Email Features for getting password pin.

2. Management of Services.

Operations: Create, Read/Show, Update, Delete

Admin can create Services and fill all details. Number of service work this service include like 

2.1. Oil filter change

2.2. Air filter change

2.3. Oil Change

2.4 Prices of this service.

2.5. etc

3. Manage of Products(vehicle)

Operations: Create, Read/Show, Update, Delete

Admin can add

1. Interior features  2. Exterior features  3. Performance feature  4. Safety features

5. Colors  6. Specification  7. Prices  8. Gallery (High Definition Images of Vehicles) 

4. Management of Appointments

Admin can Approve/fix appointment of customer that want any sort of maintenance services.

Operations: Read/Show, Approve, Reject with reasoning.

5. Management of Contact Us Email/ Queries/Complains/ Leads

Operations: Read Email/ Reply Emails.


Reference website:

https://www.toyota-frontier.com/




Comments

Popular posts from this blog

Install MariaDB Latest Version 11.4 in Red Hat Version 9

 This this post i will show you step by step the installation process of mariaDB in red hat version 9. Step1 Run the command to pull the latest updated packages on applications installed in your system. -dnf update If you get Kernal update than reboot the system -reboot Step2 Go to official mariaDB site Make mariadb repository in /etc/yum.repos.d Place the configuration in this file # MariaDB 11.4 RedHatEnterpriseLinux repository list - created 2024-09-24 11:12 UTC # https://mariadb.org/download/ [mariadb] name = MariaDB # rpm.mariadb.org is a dynamic mirror if your preferred mirror goes offline. See https://mariadb.org/mirrorbits/ for details. # baseurl = https://rpm.mariadb.org/11.4/rhel/$releasever/$basearch baseurl = https://mirrors.aliyun.com/mariadb/yum/11.4/rhel/$releasever/$basearch # gpgkey = https://rpm.mariadb.org/RPM-GPG-KEY-MariaDB gpgkey = https://mirrors.aliyun.com/mariadb/yum/RPM-GPG-KEY-MariaDB gpgcheck = 1 Now install the mariaDB with its dependencies package...

MySQL course to learn queries to manage DBMS.

1. Create Table CREATE TABLE statement allows you to create new table in database. The example code is given below.  create table profile( id int, name varchar(50), birth_date date, phone varchar(12), gender varchar(1) ); Code language: SQL (Structured Query Language) ( sql ) 2. Insert data in table INSERT INTO statement is use to insert new record/data into table. INSERT INTO profile (id, name, birth_date, phone, gender) VALUES (2, "Zaib", "1996-03-15", "9238975404", "M"); Code language: SQL (Structured Query Language) ( sql ) 3. Insert multiple records at-once INSERT INTO state is use to insert multiple new record/data into table. INSERT INTO profile (id, name, birth_date, phone, gender) VALUES (1, "Usamn ali", "1990-08-26", "9238785094", "M", 18, "Karachi"), (2, "Aisha", "1997-06-12", "9238974468", "F", 19, "Lahore"), ...

Send email in php "without less secure" restriction

 => https://www.youtube.com/watch?v=Kjn5vBbBsi8 (less secure link) https://www.youtube.com/watch?v=dNTZ8X9Xk_Q&t=259s https://www.thapatechnical.com/2020/03/how-to-send-mail-from-localhost-xampp.html LARAVEL env file setup for gmail configuration MAIL_DRIVER=smtp MAIL_HOST=smtp.gmail.com MAIL_PORT=465 MAIL_USERNAME=exampleEmail@gmail.com MAIL_PASSWORD=yourAppPassword MAIL_ENCRYPTION=ssl MAIL_FROM_ADDRESS=exampleEmail@gmail.com MAIL_FROM_NAME="Adnan Zaib" Note: for TLS use Port : 587 for SSL use Port : 465