Overview

The User Management System with SQL is a robust web application designed for efficiently managing user data. It offers user registration, login, advanced search functionality, and CRUD operations, ensuring a comprehensive platform for user information management.

Features

Technologies

SQL Create Table

Use the following SQL statement to create the users table:

CREATE TABLE Users( username VARCHAR(50) PRIMARY KEY, password VARCHAR(50), firstname VARCHAR(50), lastname VARCHAR(50), salary FLOAT, age INTEGER, registerday DATE, signintime DATETIME );

View Demo

Watch the demonstration of the application here:

YouTube Demo

Setup Instructions

  1. Clone the repository to your local machine.
  2. Set up the backend by navigating to the project folder and running npm start.
  3. Access the frontend via http://localhost/database_javascript/project1/Frontend/auth.html.