Skip to content

saif-ashraf99/Online-AMS-System

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 

Repository files navigation

Online AMS System

The project called "AMS" (Auction Management System) is designed to help users buy or sell items through an online platform.

Requirements

To access the AMS dashboard, Admin, Seller, and Buyer must log in first. The following are the requirements for each user type:

Admin

  • Login/Logout.
  • Manage new accounts (accept or reject).
  • View transaction results.

Seller

  • Login/Logout/Register.
  • Manage auctions (CRUD).
  • Post an auction within a specific time.
  • Show the activity history of their auctions with the winners.

Bidder

  • Login/Logout/Register.
  • Filter auction by name or category.
  • Bid on the desired auction.
  • View won auctions and their purchase history.

Database Models

The database models for this system are as follows:

  • User model consists of:
    • Email
    • Password
    • Phone
    • Status (Active, Inactive)
    • Type (Admin, Seller, Bidder)
  • Auction models consist of:
    • Name
    • Description
    • Start date
    • End date

I made this project using Node.js and Express.js in the backend, and React.js in the frontend.