-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (78 loc) · 3.03 KB
/
index.html
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
35
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Management</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
</style>
</head>
<body>
<h2>Student Management</h2>
<form id="studentForm">
<label for="studentID">Student ID:</label>
<input type="text" id="studentID" required>
<label for="studentName">Full Name:</label>
<input type="text" id="studentName" required>
<label for="dob">Date of Birth:</label>
<input type="date" id="dob" required>
<label for="class">Class:</label>
<input type="text" id="class" required>
<label for="gpa">GPA:</label>
<input type="number" id="gpa" step="0.01" required>
<button type="button" onclick="addStudent()">Add Student</button>
</form>
<h3>Student List</h3>
<ul id="studentList"></ul>
<script>
class Student {
constructor(id, name, dob, className, gpa) {
this.id = id;
this.name = name;
this.dob = dob;
this.className = className;
this.gpa = gpa;
}
updateInfo(name, dob, className, gpa) {
this.name = name;
this.dob = dob;
this.className = className;
this.gpa = gpa;
}
}
let students = [];
function addStudent() {
const studentID = document.getElementById("studentID").value;
const studentName = document.getElementById("studentName").value;
const dob = document.getElementById("dob").value;
const className = document.getElementById("class").value;
const gpa = document.getElementById("gpa").value;
const student = new Student(studentID, studentName, dob, className, gpa);
students.push(student);
displayStudents();
clearForm();
}
function displayStudents() {
const studentList = document.getElementById("studentList");
studentList.innerHTML = "";
students.forEach(student => {
const li = document.createElement("li");
const formattedDate = formatDate(student.dob);
li.textContent = `Student ID: ${student.id}, Name: ${student.name}, Date of Birth: ${formattedDate}, Class: ${student.className}, GPA: ${student.gpa}`;
studentList.appendChild(li);
});
}
function clearForm() {
document.getElementById("studentForm").reset();
}
function formatDate(dateString) {
const [year, month, day] = dateString.split('-');
return `${day}/${month}/${year}`;
}
</script>
</body>
</html>