automatic loading of last week every minute
This commit is contained in:
31
src/static/index.html
Normal file
31
src/static/index.html
Normal file
@@ -0,0 +1,31 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>BerichtExporter</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1>BerichtExporter</h1>
|
||||
<div class="selector">
|
||||
<select id="week-list">
|
||||
<option value="0">Wird Geladen</option>
|
||||
</select>
|
||||
<button id="export-button" onclick="exportReport()">Exportieren</button>
|
||||
</div>
|
||||
<div class="ueberschrift">
|
||||
<h4>Kalendereinträge</h4>
|
||||
<button id="calendar-copy-button" onclick="copyToClipboard(calendarcalendarCopyButton, calendarTextarea)">Kopieren</button>
|
||||
</div>
|
||||
<textarea id="calendar-textarea"></textarea>
|
||||
|
||||
<div class="ueberschrift">
|
||||
<h4>Untis Einträge</h4>
|
||||
<button id="untis-copy-button" onclick="copyToClipboard(untisCopyButton, untisTextarea)">Kopieren</button>
|
||||
</div>
|
||||
<textarea id="untis-textarea"></textarea>
|
||||
|
||||
<script src="index.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user