RECICLO is a web application designed to facilitate the management of recycling processes. The application allows users to log in as either an admin or a buyer, providing tailored functionalities for each user type.
- User authentication for both admins and buyers.
- Registration forms for new users.
- Separate dashboards for admin and buyer roles.
- Responsive design for optimal viewing on various devices.
RECICLO
├── src
│ ├── pages
│ │ ├── login.html # HTML structure for the login page
│ │ ├── register.html # HTML structure for the registration page
│ └── styles
│ ├── login.css # CSS styles for the login page
│ ├── register.css # CSS styles for the registration page
├── database
│ ├── admin.sql # SQL commands to create the admin table
│ ├── buyer.sql # SQL commands to create the buyer table
├── README.md # Project documentation
- Clone the repository to your local machine.
- Navigate to the project directory.
- Set up the database using the SQL files located in the
databasefolder:- Run
admin.sqlto create the admin table. - Run
buyer.sqlto create the buyer table.
- Run
- Open
src/pages/login.htmlin your web browser to access the login page. - Use the registration page at
src/pages/register.htmlto create a new account.
- Admin Table: Contains fields for admin credentials and additional information.
- Buyer Table: Contains fields for buyer credentials and additional information.
Contributions are welcome! Please submit a pull request or open an issue for any enhancements or bug fixes.
This project is licensed under the MIT License.