-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrainer.html
More file actions
139 lines (134 loc) · 6.24 KB
/
trainer.html
File metadata and controls
139 lines (134 loc) · 6.24 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.css">
<link rel="stylesheet" href="styleNEW.css">
<title>Trainer</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-custom">
<a class="navbar-brand" href="#">
<div class="logo-area">
<img src="monkas1.png" width="30px">
</div>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="student.html">Student</a>
</li>
<li class="nav-item">
<a class="nav-link" href="trainer.html">Trainer</a>
</li>
<li class="nav-item">
<a class="nav-link" href="course.html">Course</a>
</li>
<li class="nav-item">
<a class="nav-link" href="assignment.html">Assignment</a>
</li>
</ul>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div class="col-sm-1">
<a href="addTrainer.html" class="button1">ADD</a>
<a href="trainersPerCourse.html" class="button2">Trainers Per Course</a>
</div>
<div class="col-sm-11">
<h1 class="mt-5">Trainers</h1>
<table class="table" border="1">
<thead>
<tr>
<th scope="col">#</th>
<th>Firstname</th>
<th>Lastname</th>
<th>Subject</th>
<th colspan="3">Action</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Sos</td>
<td>Sap</td>
<td>Java</td>
<td><a href="updateTrainer.html" class="button">UPDATE</a></td>
<td><a href="editTrainer.html" class="button">EDIT</a></td>
<td> <a href="#" class="deleteLink">DELETE</a></td>
</tr>
<tr>
<th scope="row">2</th>
<td>Elenh</td>
<td>Elenitsa</td>
<td>C#</td>
<td><a href="updateTrainer.html" class="button">UPDATE</a></td>
<td><a href="editTrainer.html" class="button">EDIT</a></td>
<td> <a href="#" class="deleteLink">DELETE</a></td>
</tr>
<tr>
<th scope="row">3</th>
<td>Kwstas</td>
<td>Kwstakhs</td>
<td>Java</td>
<td><a href="updateTrainer.html" class="button">UPDATE</a></td>
<td><a href="editTrainer.html" class="button">EDIT</a></td>
<td> <a href="#" class="deleteLink">DELETE</a></td>
</tr>
<tr>
<th scope="row">4</th>
<td>Maria</td>
<td>Maraki</td>
<td>C#</td>
<td><a href="updateTrainer.html" class="button">UPDATE</a></td>
<td><a href="editTrainer.html" class="button">EDIT</a></td>
<td> <a href="#" class="deleteLink">DELETE</a></td>
</tr>
<tr>
<th scope="row">5</th>
<td>Giwrgos</td>
<td>Giwrgakhs</td>
<td>Java</td>
<td><a href="updateTrainer.html" class="button">UPDATE</a></td>
<td><a href="editTrainer.html" class="button">EDIT</a></td>
<td> <a href="#" class="deleteLink">DELETE</a></td>
</tr>
<tr>
<th scope="row">6</th>
<td>Tzenh</td>
<td>Tzenoula</td>
<td>C#</td>
<td><a href="updateTrainer.html" class="button">UPDATE</a></td>
<td><a href="editTrainer.html" class="button">EDIT</a></td>
<td> <a href="#" class="deleteLink">DELETE</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<footer class="footer">
© Copyright by Kappa 2020
</footer>
<!-- /Jquery -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<!-- Bootstrap javascript -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<!-- Toastr.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.min.js"></script>
<script src="scriptDelete.js"></script>
</body>
</html>