-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathonboarding.html
64 lines (63 loc) · 3.23 KB
/
onboarding.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Onboarding | BetterUntis</title>
<link rel="stylesheet" href="/styles/register/onboarding/onboarding.css">
<link rel="stylesheet" href="/styles/register/onboarding/MultiSelect.css">
<link href="/src/register/onboarding/MultiSelect.js" rel="stylesheet" type="text/css">
<link rel="manifest" href="manifest.json">
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/service-worker.js')
.then(registration => {
console.log("Registered!");
}).catch(console.error);
}
</script>
</head>
<body>
<div class="center-wrapper">
<h1 style="color: white">Willkommen, Forename!</h1>
<div class="container">
<!-- Progress Bar -->
<div class="progress-bar">
<div class="progress"></div>
</div>
<!-- Step 1 -->
<!-- SKIP WHEN ONLY ONE CLASS AVAILABLE -->
<form id="form-step-1" class="form-step active">
<h2 class="onboarding-heading">Klasse auswählen - 1/3</h2>
<p class="onboarding-description">Wähle deine Klasse aus</p>
<div class="select">
<select name="format" id="format">
<option selected disabled>Wähle deine Klasse aus</option>
<option value="pdf">Klasse 10b (Aicher/Häussler)</option>
<option value="txt">Jahrgangsstufe 1 (Linden)</option>
</select>
</div>
<button type="button" class="button next-btn">Weiter!</button>
<p>Du möchtest keinen Filter erstelllen? <a href="" style="color: var(--highlight-faded)">Überspringen</a></p>
</form>
<!-- Step 2 -->
<form id="form-step-2" class="form-step">
<h2 class="onboarding-heading">Filter erstellen - 2/3</h2>
<p class="onboarding-description">Wähle die Fächer, die in deinem Stundenplan angezeigt werden sollen</p>
<select id="dynamic" name="dynamic" class="select"></select>
<button type="button" class="button next-btn">Weiter!</button>
<p>Letzter Schritt! | <a onclick="showPreviousStep()" style="color: var(--highlight-faded); cursor: pointer">Zurück</a></p>
</form>
<!-- Step 3 -->
<form id="form-step-3" class="form-step">
<h1 class="onboarding-heading" style="text-align: center;">🎉 Geschafft! 🎉</h1>
<h4>Dein Account ist jetzt fertig eingerichtet!</h4>
<button class="button" style="background-color: var(--highlight); color: white;"><a href="" style="text-decoration: none; color: white !important"> Zum Stundenplan </a></button>
</form>
</div>
</div>
<script src="/src/register/onboarding/onboarding.js"></script>
<script src="/src/register/onboarding/MultiSelect.js"></script>
<script src="/src/register/onboarding/generateCourseSelect.js"></script>
</body>
</html>