-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCentral library teacher 2.html
110 lines (105 loc) · 3.68 KB
/
Central library teacher 2.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Details</title>
<link rel="stylesheet" type="text/css" href="./Central Library teacher 2.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
</head>
<body>
<p>Student Details</p>
<hr>
<h2 id="booklist-el">BookList</h2>
<div class="wholecontainer">
<div class="container">
<div class="container-item badge text-bg-secondary my-5">
<h3>BookName</h3>
</div>
<div class="alert alert-warning" role="alert">
B.S. Grewal
</div>
<div class="alert alert-info" role="alert">
Mechanical Engineering
</div>
<div class="alert alert-warning" role="alert">
N.D. Bhatt
</div>
<div class="alert alert-info role="alert">
Electrical Engineering
</div>
</div>
<div class="container">
<div class="container-item badge text-bg-secondary my-5">
<h3>Date of Issue</h3>
</div>
<div class="alert alert-warning" role="alert">
4th June 2022
</div>
<div class="alert alert-info" role="alert">
4th June 2022
</div>
<div class="alert alert-warning" role="alert">
4th June 2022
</div>
<div class="alert alert-info" role="alert">
4th June 2022
</div>
</div>
<div class="container">
<div class="container-item badge text-bg-secondary my-5">
<h3>Last date of return</h3>
</div>
<div class="alert alert-warning" role="alert">
31st August 2022
</div>
<div class="alert alert-info" role="alert">
31st August 2022
</div>
<div class="alert alert-warning" role="alert">
31st August 2022
</div>
<div class="alert alert-info" role="alert">
31st August 2022
</div>
</div>
<div class="container">
<div class="container-item badge text-bg-secondary my-3">
<h3>Returned</h3>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="FirstBook" id="FirstBook-el" value="FirstBook">
<label class="form-check-label" for="FirstBook">
First Book
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="SecondBook" id="SecondBook-el" value="SecondBook">
<label class="form-check-label" for="SecondBook">
Second Book
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="ThirdBook" id="ThirdBook-el" value="ThirdBook">
<label class="form-check-label" for="ThirdBook">
Third Book
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="FourthBook" id="FourthBook-el" value="FourthBook">
<label class="form-check-label" for="FourthBook">
Fourth Book
</label>
</div>
</div>
</div>
<button class="btn btn-primary mx-2 my-4" id="submit-el">Submit</button>
<a href="./Central Library teacher 3.html" target="_blank"><p id="output-el"></p></a>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2"
crossorigin="anonymous"></script>
<script src="./Central Library teacher 2.js"></script>
</body>
</html>