Student Management System with LocalStorage | JavaScript CRUD Project
Skills:
LLM Foundations60%
Key Takeaways
This video demonstrates a simple Student Management System using JavaScript and LocalStorage, allowing users to perform CRUD operations.
Full Transcript
foreign let's create this student management system with local storage we can see how to use this simple web application [Music] you can insert records using the save button [Music] if some input box is empty the system gives an error message like this reset input boxes using the reset button [Music] foreign [Music] we can edit our records [Music] we can delete our records then go to developer Tools in your browser you can press crtl shift and I at once to open this in the local storage we can see our records [Music] refresh the web page you will see that the data is not deleted data will not be deleted in the app as the records are in local storage close the app and run it again you can see the previous data let's start this web application open a new vs code project [Music] then create HTML CSS and JavaScript files like this in HTML part we Implement main body structure of overproject foreign [Music] now we can link a JavaScript file [Music] foreign let's create a table with two columns one for the student form and another for the set picture [Music] at first we can create a student information form [Music] foreign [Music] foreign [Music] foreign [Music] foreign another table for showing records after they have been submitted [Music] the edit and delete buttons are in the relevant columns thank you let's move to the CSS file to style this HTML page foreign [Music] foreign [Music] foreign [Music] in the HTML card we have to link bootstrap links for style save reset edit and delete buttons links are in the description you can copy and paste it [Music] foreign let's go to the Javascript file now Implement methods for inserting resetting editing updating and deleting data with local storage [Music] thank you [Music] foreign [Music] foreign [Music] foreign [Music] thank you [Music] foreign [Music] foreign [Music] data in the database we'll see you again in the next video thank you for watching [Music] foreign [Music] foreign
Original Description
🛑 Subscribe for more videos like this:
https://www.youtube.com/channel/UCLa8KFoVLQ0q7fCRcF0_wYQ
This is an JavaScript code for a simple Student Management System with local storage. The system allows users to add and store student details, including full name, enrollment number, student class, telephone number, and age. The system also has functionalities to edit and delete student records.
You can get more idea about this project after viewing the Source Code
❤️I only need Subscribe , I don't need money❤️
🛑 Source Code = https://github.com/SachinthanaBuddhika/Simple-Student-management-system-with-local-storage.git
Bootstrap links = https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.0/css/bootstrap.min.css ,
https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css
Timecodes
0:00 - channel intro
0:00:06 - about project
0:02:00 - start create project in vs code
0:02:17 - starting HTML part
0:03:09 - table 01 (student form and picture )
0:06:05 - table 02 ( for output student data form )
0:07:00 - CSS part ( style the application )
0:09:33 - link bootstraps links
0:08:40 - JavaScript code (add methods)
0:15:53 - test the project
0:17:26 - ending
💻 My Social Media:
Facebook :https://www.facebook.com/sachinthana.buddhika?mibextid=ZbWKwL
Instagram :https://instagram.com/__sachinthana__buddhika__?igshid=NmQ2ZmYxZjA=
Github :https://github.com/SachinthanaBuddhika
Twitter :https://twitter.com/SachinthanaBud1?t=T5oqBuBKol57WYcyLsPaKg&s=09
--------------------------------------------------------------------------
#studentmanagementsystem #javascriptproject #localstorage
Watch on YouTube ↗
(saves to browser)
Sign in to unlock AI tutor explanation · ⚡30
Playlist
Uploads from CydexCode · CydexCode · 35 of 60
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
▶
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Delete table row data in Microsoft SQL Server Management Studio #sql #sqlserver #sqlqueries #code
CydexCode
Insert data into table in Microsoft SQL Server Management Studio #sql #sqlserver #sqlqueries #code
CydexCode
Create Database and table in Microsoft SQL Server Management Studio #sql #sqlserver #sqlqueries
CydexCode
Update table row data in Microsoft SQL Server Management Studio #sqlserver #sql #code
CydexCode
Create the table's FOREIGN KEY in Microsoft SQL Server Management Studio #sqlserver #sql #database
CydexCode
Create the table's PRIMARY KEY in Microsoft SQL Server Management Studio #sql #sqlserver #database
CydexCode
The best gift you can give for Valentine's day❤️💻 #shorts. #valentinesday #html #css
CydexCode
Swap the elements in Array using java#java #code #shorts #swap #array
CydexCode
Sorting an array using SORT FINCTION in java. #java #javaprogramming #sort #array #shorts
CydexCode
Bubble Sort in java #java #javaprogramming #array #sort #shorts
CydexCode
Insertion Sort in java. #java #javaprogramming #array #sort #shorts #code
CydexCode
Selection Sort in java. #java #javaprogramming #array #sort #code #shorts
CydexCode
Apple logo design 🍎 #apple #html #css #logodesign #shorts
CydexCode
BEN 10 logo design. #html #css #logo #shorts
CydexCode
Binary Search in Java #java #binarysearch #datastructure #programming
CydexCode
Merging two sorted arrays in java. #sort #java #programming #datastructure
CydexCode
Merge sort in Java. #merge #sort #java #programming #datastructure
CydexCode
This is how to decide what programming language to learn🛑
CydexCode
Make a Digital Clock 🕒 #html #css #javascript #digitalclock
CydexCode
Create a keyboard⌨️ #javascript #html #css #javascriptproject #keyboard
CydexCode
Create a Stopwatch🕒. #javascriptproject #html #css #stopwatch
CydexCode
bulb on/off using javascript 💡. #javascriptproject #html #css #bulb
CydexCode
Create weather app using javascript ☁️🌧️⛅🌞. #javascriptproject #html #css #weather
CydexCode
How to Create a Text Portrait using HTML & CSS | Text to Image
CydexCode
Youtube logo #css #html #youtubelogo #shorts
CydexCode
Create a Helicopter 🚁. #css #html #helicopter
CydexCode
Google Logo Design | CSS and Html | #css #html #googlelogo #cssproject
CydexCode
Spirograph Circles | CSS TRICKS #css #html #animation
CydexCode
CIGARETTE 🚬 | With Vapor Effect | CSS Tricks #css #html #cigarette
CydexCode
Facebook Logo | CSS Tricks #css #facebooklogo #logodesign
CydexCode
Instagram Logo | CSS Tricks #cssdesign #instagramlogo #shorts
CydexCode
CODE CAVE | Official Trailer | Give Your Comments For Us
CydexCode
TikTok Logo | CSS tricks #cssproject #tiktoklogo
CydexCode
Student Management System | JavaScript CRUD Application | Special for beginners .
CydexCode
Student Management System with LocalStorage | JavaScript CRUD Project
CydexCode
Create a Microsoft Logo | CSS Tricks | Pure CSS. #microsoftlogo #csslogodesign #css
CydexCode
CSS Square Animation Effects | CSS Tricks | Pure CSS
CydexCode
Olympic Logo Rings Animation | Pure CSS | CSS Tricks
CydexCode
CSS Button Hover Effects | Gradient Border using CSS and HTML
CydexCode
CSS Button Hover Effects | Gradient Border Effects | CSS Tricks #cssbutton #hovereffect #css
CydexCode
Animated Login Form using HTML and CSS | With Gradient Border |
CydexCode
Animated Login Form using CSS and HTML #loginform #signupform #csstutorial
CydexCode
Animated Toggle Switch with Gradient Border using CSS and HTML | Toggle Switch Button
CydexCode
Animated Toggle Switch using CSS and HTML | Gradient Border #toggleswitch #csstutorial #shorts
CydexCode
3D Rotating Cube Animation using CSS and HTML | CSS TRICK
CydexCode
Football player's 3D Cube Animation ⚽🎖️|CSS Tricks #cubeanimation #csstutorial #football
CydexCode
Responsive Navigation Bar using HTML & CSS | Search Bar, Drop-down list & Login option
CydexCode
Build Your Own ChatGPT AI Application using JavaScript
CydexCode
😮 Anyone can Build own ChatGPT | JavaScript Tutorial #chatgpt #aibot #chatbot
CydexCode
3D Parallax Scrolling Using HTML, CSS & JavaScript | 3D Webpages
CydexCode
Parallax Scrolling Website | HTML , CSS & JavaScript #website #parallaxeffect #webdesign #parallax
CydexCode
How to Build a Responsive Portfolio Website Using HTML , CSS and JavaScript | Step-by-Step Tutorial
CydexCode
Build a Calculator in HTML, CSS, and JavaScript with Easy
CydexCode
[ASMR Programming]- Responsive Portfolio Website #portfolio #portfoliowebsite #personalwebsite
CydexCode
[ ASMR Programming ]- How to build a Calculator. #calculator #css #javascriptproject
CydexCode
How to build Chess Game Using HTML , CSS & JavaScript
CydexCode
How to make a Breakout Game using HTML , CSS & JavaScript | Bouncing Ball Game | Step by Step
CydexCode
Frontend Developers vs Backend Developers #frontend #backenddeveloper #fullstackdevelopment
CydexCode
Login / SignUp Form using CSS | Gradient Border #loginform #signupform #css
CydexCode
Input types in HTML 👨💻. #input #html #htmlcoding
CydexCode
More on: LLM Foundations
View skill →Related Reads
📰
📰
📰
📰
The Share Button Is the Product: Engineering a Viral Loop in Vanilla JS
Dev.to · yunjie
React, Explained Directly — Episode 1: The Fundamentals
Dev.to · surajrkhonde
React useEffect Dependency Array Complete Guide
Dev.to · banti kevat
CSS Grid vs Flexbox: The Matrix of Layouts
Dev.to · Timevolt
Chapters (11)
channel intro
0:06
about project
2:00
start create project in vs code
2:17
starting HTML part
3:09
table 01 (student form and picture )
6:05
table 02 ( for output student data form )
7:00
CSS part ( style the application )
9:33
link bootstraps links
8:40
JavaScript code (add methods)
15:53
test the project
17:26
ending
🎓
Tutor Explanation
DeepCamp AI