This repository has been archived by the owner on Aug 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
134 lines (130 loc) · 4.69 KB
/
index.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
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
<!DOCTYPE html>
<html lang="de-De">
<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">
<meta http-equiv="refresh" content="2; url=./cOS-HomeWork.php">
<link rel="stylesheet" href="./src/mdl/googleAPI-style.css">
<link rel="stylesheet" href="./src/mdl/mdl-style.css">
<script src="./src/mdl/mdl-script.js"></script>
<script src="./src/js/script.js"></script>
<link rel="manifest" href="./config/manifest.webmanifest">
<link rel="stylesheet" href="./src/css/style.css">
<link rel="icon" type="image/x-icon" href="./src/img/homework-favicon1.cOS-imageFile">
<title>
Hausaufgaben 9E
</title>
</head>
<body>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<span class="maintitle mdl-layout-title">
Hausaufgaben 9E 📚
</span>
<div class="mdl-layout-spacer"></div>
<nav class="mdl-navigation mdl-layout--large-screen-only"></nav>
</div>
</header>
<div class="mdl-layout__drawer">
<span class="mdl-layout-title">
<b>Menü</b> - <small>Hausaufgaben</small>
</span>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" title="Links ansehen"
href="./links.php?comeFrom=./index.php">
🔗 Links
</a>
<a class="mdl-navigation__link" title="Termine ansehen"
href="./calendar.php?comeFrom=./index.php">
🗓 Termine
</a>
<a class="mdl-navigation__link" title="Stundenplan öffnen"
href="./timetable.php?comeFrom=./index.php">
📆 Stundenplan
</a>
<a class="mdl-navigation__link" title="Datenschutz öffnen"
href="./p/Datenschutz.php?comeFrom=../index.php">
🔐 Datenschutz
</a>
<a class="mdl-navigation__link" title="Impressum öffnen"
href="./p/Impressum.php?comeFrom=../index.php">
📑 Impressum
</a>
<a class="mdl-navigation__link" title="⚙ Einstellungen"
href="./settings.php?comeFrom=./index.php">
⚙ Einstellungen
</a>
<a class="mdl-navigation__link" title="E-Mail schreiben"
href="./contact.php?comeFrom=./index.php">
📧 Kontakt
</a>
<a class="mdl-navigation__link" title="Info zu aktuellen Version + Änderungen"
href="./changeLog.php?comeFrom=./index.php">
<p class="version">
<script src="./src/js/version.js"></script>
</p>
</a>
<a class="mdl-navigation__link" style="background-color: #c3c3c34f;"
title="© Martin Blieninger"
href="#">© <b>cracky></b> <small>by Martin B.<sup> 2023</sup></small></a>
<img onclick="window.location.href='#qr-action';" class="qr-share" src="./src/img/qr-share-homework.cOS-imageFile">
<p class="qr-text">
Tippe für <b>QR-Code</b>
</p>
</img>
<br>
<a class="mdl-navigation__link" title="nach oben"
href="#top-menu">
Nach oben ☝
</a>
<br><br><br><br><br><br>
<br id="qr-action">
</nav>
</div>
<main class="mdl-layout__content">
<div class="page-content">
<div id="p2" class="mdl-progress mdl-js-progress mdl-progress__indeterminate"></div>
<center>
<img class="sys-onload" src="./src/img/loading_cOS-HW.cOS-gifFile">
<?php
exec("sudo bash ./sh/tdLogging.sh");
?>
<br>
<div class="mdl-spinner mdl-js-spinner is-active"></div>
</center>
<script>
localStorage.setItem(
"auto_sync",
"true"
);
localStorage.setItem(
"errorReport",
"true"
);
localStorage.setItem(
"analytics",
"true"
);
localStorage.setItem(
"tracking",
"true"
);
localStorage.setItem(
"openAI",
"false"
);
function refresh() {
console.log("refresh page...");
location.reload();
window.location.href='./index.php?sys=refresh;'
}
</script>
</center>
</div>
</div>
</main>
</div>
</body>
</html>