Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/karlangaxz/crud

This is a simple CRUD (Create, Read, Update, Delete) web application using HTML, CSS, JavaScript, and Bootstrap. The application allows users to input, display, update, and delete user data such as email, name, and phone number. The data is stored in the browser's localStorage.
https://github.com/karlangaxz/crud

bootstrap5 crud crud-application css html html-css-javascript javascript js

Last synced: about 5 hours ago
JSON representation

This is a simple CRUD (Create, Read, Update, Delete) web application using HTML, CSS, JavaScript, and Bootstrap. The application allows users to input, display, update, and delete user data such as email, name, and phone number. The data is stored in the browser's localStorage.

Awesome Lists containing this project

README

        

# CRUD Application

This is a simple CRUD (Create, Read, Update, Delete) web application using HTML, CSS, JavaScript, and Bootstrap. The application allows users to input, display, update, and delete user data such as email, name, and phone number. The data is stored in the browser's `localStorage`.

![MurphyNods](https://github.com/user-attachments/assets/ccb9d655-1727-418a-9feb-a4c7b33f111b)

## Features

- **Create:** Users can input their email, name, and phone number using the form and save it to `localStorage`.
- **Read:** The stored user data is displayed in a table.
- **Update:** Users can edit the details of a selected entry and update it.
- **Delete:** Users can delete any entry from the list.

## Technologies Used

- **HTML5**
- **CSS3**
- **Bootstrap 5.3.3** for responsive design and styling
- **JavaScript**
- Data is managed using the browser's `localStorage`.

## Project Structure

- `index.html`: The main HTML file that contains the structure of the application.
- `style.css`: Custom CSS file for additional styling (if needed).
- `main.js`: JavaScript file containing all the CRUD functionalities.