├── views ├── 404.ejs ├── about.ejs ├── partials │ ├── sidebar.ejs │ └── header.ejs ├── layouts │ └── main.ejs ├── search.ejs ├── customer │ ├── add.ejs │ ├── view.ejs │ └── edit.ejs └── index.ejs ├── public ├── img │ └── picture.webp └── css │ └── main.css ├── server ├── config │ └── db.js ├── models │ └── Customer.js ├── routes │ └── customer.js └── controllers │ └── customerController.js ├── package.json ├── README.md ├── LICENSE ├── app.js ├── .gitignore └── dummyData.txt /views/404.ejs: -------------------------------------------------------------------------------- 1 |
6 | Photo by Garrett Sears on Unsplash
7 | 8 |This is a simple user management system developed as part of a YouTube tutorial.
10 |Check out my YouTube Channel and support by subscribing!
11 || First Name | 17 |Last Name | 18 |Tel | 19 |Email Name | 20 |Action | 21 |
|---|---|---|---|---|
| <%= element.firstName %> | 27 |<%= element.lastName %> | 28 |<%= element.tel %> | 29 |<%= element.email %> | 30 |31 | 32 | 49 | 50 | | 51 |
| First Name | 25 |Last Name | 26 |Action | 28 ||
|---|---|---|---|
| <%= element.firstName %> | 35 |<%= element.lastName %> | 36 |<%= element.email %> | 37 |38 | 39 | 56 | 57 | 58 | | 59 |