Deploying to pages from @ maxp/AbfallAlarm@9794c3b0ef 🚀
This commit is contained in:
135
index.html
Normal file
135
index.html
Normal file
@@ -0,0 +1,135 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>AbfallAlarm</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Responsive design meta tag -->
|
||||
<meta name="description" content="AbfallAlarm, eine benutzerfreundliche WebApp, die darauf abzielt, das Leben der
|
||||
Bürger von Arnsberg zu vereinfachen.">
|
||||
<link rel="stylesheet" href="./index.css">
|
||||
<link rel="stylesheet" href="./github-corner.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<a href="https://github.com/0xmax42/AbfallAlarm" class="github-corner" aria-label="View source on GitHub"><svg
|
||||
width="80" height="80" viewBox="0 0 250 250"
|
||||
style="fill:#64CEAA; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true">
|
||||
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
|
||||
<path
|
||||
d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2"
|
||||
fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path>
|
||||
<path
|
||||
d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z"
|
||||
fill="currentColor" class="octo-body"></path>
|
||||
</svg></a>
|
||||
|
||||
|
||||
<div id="app-content">
|
||||
<!-- Header Section -->
|
||||
<div class="header">
|
||||
<h1>Abfall Alarm</h1>
|
||||
</div>
|
||||
|
||||
<!-- Logo Section -->
|
||||
<div class="logo">
|
||||
<img src="logo.svg" alt="Abfall Alarm Logo">
|
||||
</div>
|
||||
|
||||
<!-- Description Text -->
|
||||
<div class="description">
|
||||
<p><b>Abfall Alarm</b> ist eine intuitive und benutzerfreundliche WebApp, die darauf abzielt, das Leben der
|
||||
Bürger von Arnsberg zu vereinfachen, indem sie eine zuverlässige Erinnerungsfunktion für den städtischen
|
||||
Abfallkalender bietet.</p>
|
||||
|
||||
<p>Mit dieser App können Nutzer ihre iCalendar (.ics) Dateien für den Abfallkalender der Stadt Arnsberg
|
||||
hochladen und automatisch Erinnerungen für jeden Abholtermin hinzufügen.</p>
|
||||
|
||||
<p>Laden Sie sich bitte zuerst eine entsprechende <b>iCal-Datei</b> von der Stadt Arnsberg herunter:
|
||||
<a href="https://abfallkalender.arnsberg.de/" target="_blank">Quelle</a>. Kommen Sie danach zurück und
|
||||
folgen Sie den Anweisungen unten.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Working Area -->
|
||||
<div class="working-area">
|
||||
<!-- Reminder Settings -->
|
||||
<div id="reminder-setting-area" class="areas">
|
||||
<h2>1. Erinnerung einstellen</h2>
|
||||
<p>Wählen Sie aus, wann Sie an die Abfuhr erinnert werden möchten.</p>
|
||||
<div class="reminder-days">
|
||||
<label for="reminder-days-select">Tage vor Abfuhr erinnern:</label>
|
||||
<select id="reminder-days-select">
|
||||
<!-- Options for days -->
|
||||
<option value="1" selected>1 Tag</option>
|
||||
<option value="2">2 Tage</option>
|
||||
<option value="3">3 Tage</option>
|
||||
<option value="4">4 Tage</option>
|
||||
<option value="5">5 Tage</option>
|
||||
<option value="6">6 Tage</option>
|
||||
<option value="7">7 Tage</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="reminder-hours">
|
||||
<label for="reminder-hours-select">Uhrzeit:</label>
|
||||
<select id="reminder-hours-select">
|
||||
<!-- Options for hours -->
|
||||
<option value="0">00:00 Uhr</option>
|
||||
<option value="1">01:00 Uhr</option>
|
||||
<option value="2">02:00 Uhr</option>
|
||||
<option value="3">03:00 Uhr</option>
|
||||
<option value="4">04:00 Uhr</option>
|
||||
<option value="5">05:00 Uhr</option>
|
||||
<option value="6">06:00 Uhr</option>
|
||||
<option value="7">07:00 Uhr</option>
|
||||
<option value="8">08:00 Uhr</option>
|
||||
<option value="9">09:00 Uhr</option>
|
||||
<option value="10">10:00 Uhr</option>
|
||||
<option value="11">11:00 Uhr</option>
|
||||
<option value="12" selected>12:00 Uhr</option>
|
||||
<option value="13">13:00 Uhr</option>
|
||||
<option value="14">14:00 Uhr</option>
|
||||
<option value="15">15:00 Uhr</option>
|
||||
<option value="16">16:00 Uhr</option>
|
||||
<option value="17">17:00 Uhr</option>
|
||||
<option value="18">18:00 Uhr</option>
|
||||
<option value="19">19:00 Uhr</option>
|
||||
<option value="20">20:00 Uhr</option>
|
||||
<option value="21">21:00 Uhr</option>
|
||||
<option value="22">22:00 Uhr</option>
|
||||
<option value="23">23:00 Uhr</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Upload Section -->
|
||||
<div id="upload-area" class="areas">
|
||||
<h2>2. Abfallkalender hochladen</h2>
|
||||
<p>Wählen Sie Ihren Abfallkalender aus und klicken Sie danach auf den 'Kalender bearbeiten'-Button.</p>
|
||||
<!-- Hidden upload field for .ical file and label as a button replacement -->
|
||||
<input type="file" id="ical-upload" accept=".ics">
|
||||
<label for="ical-upload" id="ical-upload-label" class="button file-input">Datei auswählen...</label>
|
||||
<button id="work-button" class="button" disabled>Kalender bearbeiten..</button>
|
||||
</div>
|
||||
|
||||
<!-- Download Section -->
|
||||
<div id="download-area" class="areas">
|
||||
<h2>3. Abfallkalender inkl. Erinnerungen herunterladen</h2>
|
||||
<p>Wenn Sie Ihren Abfallkalender inkl. Erinnerungen herunterladen möchten, klicken Sie auf den
|
||||
folgenden Button.</p>
|
||||
<a id="download-button">Herunterladen</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Footer Section -->
|
||||
<div id="footer">
|
||||
0xMax42 | <a href="https://github.com/0xmax42" target="_blank">Github Profil</a>
|
||||
<br>
|
||||
<span id="footer-version"></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="./bundle.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
Reference in New Issue
Block a user