-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudenteditslot.hbs
59 lines (55 loc) · 1.83 KB
/
studenteditslot.hbs
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
<!DOCTYPE html>
<html>
<head onload='makeArray(3,9,12,20);'>
<title> Edit Reservation Slot </title>
<script type="text/javascript" src="/js/scripts.js"></script>
<link rel="stylesheet" type="text/css" href="/css/styles.css">
</head>
<body onload="makeArray(3,9,12,20); displaySlotsE('{{data}}','{{seats}}');">
{{> nav}}
<h1>
<div class="header">
Edit Reservation Slot
</div>
</h1>
<div class = "content">
<p> You can edit your reservation here:</p>
<p id="timeslot"> </p>
<table id="slots">
<tr>
<td> Free </td>
<td> Free </td>
<td> Free </td>
<td> Free </td>
<td> Free </td>
</tr>
<tr>
<td> Free </td>
<td> Free </td>
<td> Free </td>
<td> Free </td>
<td> Free </td>
</tr>
<tr>
<td> Free </td>
<td> Free </td>
<td> Free </td>
<td> Free </td>
<td> Free </td>
</tr>
<tr>
<td> Free </td>
<td> Free </td>
<td> Free </td>
<td> Free </td>
<td> Free </td>
</tr>
</table>
<br>
<input type="submit" onclick = "editreserved('{{email}}','{{editing_email}}','{{id}}')" value = "Reserve">
</div>
<div class = "cancel-reservation-changes">
<a class = "button1" href = "profile"> Cancel Changes </a>
</div>
</body>
</html>