forked from gymdb/speechday
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.php
42 lines (33 loc) · 1.57 KB
/
home.php
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
<?php include_once 'inc/header.php'; ?>
<script type='text/javascript' src='js/mySlots.js'></script>
<p id='pageName' hidden>Home</p>
<div class='container'>
<div id='tabs-1'>
<h1>Meine gebuchten Termine</h1>
<h3>Hier können Sie Ihre gebuchten Termine einsehen und löschen!<br><br></h3>
</div>
</div>
<div class='container'>
<div>
<form id='chooseMySlotsForm'>
<div class='form-group'>
<label for='selectType'>Darstellungstyp</label>
<select class='form-control' id='selectType' name='type'>
<option value='1' selected>Kompakt</option>
<option value='2'>Vollständig</option>
</select>
</div>
</form>
<input type='hidden' id='schoolUrl' value="<?php echo(escape($config->getConfig('school')['url'])); ?>" >
<button class="btn btn-primary" onclick="PrintElem('#timeTable', '<?php echo escape(getActiveSpeechdayText()); ?>')">
<span class='glyphicon glyphicon-print'></span> Zeitplan ausdrucken
</button>
<form method="post" action="controller.php?action=downloadICS" class="inline-form" >
<button type='submit' class='btn btn-primary btn-ics-download' id='btn-ics-download' >
<span class='glyphicon glyphicon-calendar'></span> Zeitplan als ics Datei
</button>
</form>
<div id='timeTable' class="section-to-print"></div>
</div>
</div>
<?php include_once 'inc/footer.php'; ?>