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 pathcontact.php
131 lines (126 loc) · 4.37 KB
/
contact.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
<!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="9.8; url=mailto:[email protected]?subject=Kontakt - cOS.HW">
<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>
Kontakt
</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="mdl-layout-title">
Kontakt
</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" id="top-menu">
<b>Menü</b> - <small>Kontakt</small>
</span>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" title="Zurück gehen"
href="./cOS-HomeWork.php?comeFrom=./calendar.php">
🏠 Home
</a>
<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=./contact.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="#top-menu">© <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">
<center>
<img class="sys-onload" src="./src/img/loading-contact.cOS-gifFile">
<br>
<button class="contactBtn mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--colored"
onclick="openInMail()">
<span class="mdl-chip mdl-chip--contact">
<span class="mdl-chip__contact mdl-color--teal mdl-color-text--white">
MB
</span>
<span class="mdl-chip__text">
Kontaktiere mich
</span>
</span><br><br>
</button>
</center>
<script>
function openInMail() {
window.location.href="mailto:[email protected]?subject=Kontakt - cOS.HW"
}
function refresh() {
console.log("refresh page...");
sessionStorage.clear();
localStorage.clear();
location.reload();
window.location.href = './index.php?sys=refresh;'
}
</script>
</center>
</div>
</div>
</main>
</div>
</body>
</html>