Giter VIP home page Giter VIP logo

grade.pro's Introduction

Student management system

TECH STACK:- HTML,CSS,JS

  • You are tasked with building a student management system using HTML, CSS, and JavaScript that allows users to create, read, update, and delete student profiles. You will be provided with an array of student objects, each containing the following properties: ID, name, age, grade, degree, and email.
  • Your task is to build a web page that displays the list of students, provides functionality to create, read, update, and delete student profiles, and allows users to search for specific students by name, email, or degree.

Problem Statement

  • Display the list of students on the page in a visually appealing way, including all properties for each student in the form of a table as shown in the figma.

  • Provide a form that allows users to create new student profiles by entering their name, age, grade, degree, and email. On the click of add students the students object should be appended in the array.

  • Render the array of students in the form of a table as shown in the figma.

  • Provide an edit icon next to each student on the table that, when clicked, allows users to edit the properties of that student in a form. The form is the same as the one which you’ll use to add students, but as soon as the edit icon is clicked, make sure that the form’s inputs gets filled and the button changes from add student to edit student. On click of this update that particular object of the student with the new values of the input.

  • Provide a delete button next to each student on the list that, when clicked, deletes that student profile.

  • Provide a search box that allows users to filter the list of students by name,email, or degree.

  • Implement all functionality using only basic DOM manipulation techniques such as createElement(), appendChild(), removeChild(), innerHTML, etc. You should not use external libraries or advanced JavaScript features such as fetch(), promises, async/await, etc.

  • The StudentsArray that you’ll create should look something like this -

  • const students = [ { ID: 1, name: 'Alice', age: 21, grade: 'A', degree: 'Btech', email: '[email protected]' }, { ID: 2, name: 'Bob', age: 22, grade: 'B', degree: 'MBA', email: '[email protected]' }, { ID: 3, name: 'Charlie', age: 20, grade: 'C', degree:'Arts', email: '[email protected]' } ];

  • Figma Link: https://www.figma.com/file/I5kSEEoYpQtlSyNW9Z7YiD/F2

grade.pro's People

Contributors

annapurna0311 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.