-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
116 lines (112 loc) · 4.88 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
<?php
/*
* Copyright (c) 2021 WüSpace e. V. <[email protected]>
*/
use function wuespace\jwt\auth\signIn;
require_once 'system/setup.php';
?>
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="WüSpace e. V.">
<meta name="robots" content="noindex,nofollow">
<title>WüSpace Login</title>
<link href="css/tailwind.css" rel="stylesheet">
<!--region Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png">
<link rel="manifest" href="/favicons/site.webmanifest">
<link rel="mask-icon" href="/favicons/safari-pinned-tab.svg" color="#000000">
<link rel="shortcut icon" href="/favicons/favicon.ico">
<meta name="apple-mobile-web-app-title" content="WüSpace Login">
<meta name="application-name" content="WüSpace Login">
<meta name="msapplication-TileColor" content="#aaaaaa">
<meta name="msapplication-config" content="/favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!--endregion-->
</head>
<body class="flex justify-center min-h-screen bg-primary bg-gray-100 p-4">
<div class="max-w-md m-auto p-4 shadow bg-white rounded-2xl font-body">
<img src="img/logo.png" alt="WüSpace" class="w-32 mx-auto">
<h1 class="text-center text-2xl font-headline text-primary">WüSpace Login</h1>
<?php if (isset($_GET['source']) && isDomainRegistered($_GET['source'])): ?>
<?php if (!isset($_POST['username'], $_POST['password']) || !signIn($_POST['username'], $_POST['password'])): ?>
<p class="mt-4">
Logge dich mit deinen WüSpace-Zugangsdaten ein, um
dich für <code class="select-all"><?= htmlspecialchars($_GET['source']) ?></code>
zu authentifizieren.
</p>
<p class="mt-4">
Nach Eingabe gelangst du auf eine Seite, auf der du die
Übermittlung der Daten bestätigen musst.
</p>
<form method="post">
<?php if (isset($_POST['username'])): ?>
<p class="mt-4 border-l-2 border-red-500 bg-red-50 p-4">
Diese Anmeldedaten scheinen leider nicht ganz richtig zu sein. Bitte versuche es erneut.
</p>
<?php endif; ?>
<p class="mt-4">
<label>
Nutzername:<br>
<input value="<?=empty($_POST['username']) ? '' : htmlspecialchars($_POST['username'])?>"
type="text" name="username" required class="border-b block w-full" autofocus>
</label>
</p>
<p class="mt-4">
<label>
Passwort:<br>
<input type="password" name="password" required class="border-b block w-full">
</label>
</p>
<p class="mt-4">
<button type="submit"
class="bg-primary rounded-full px-4 py-2 float-right text-white"
>
Einloggen
</button>
</p>
</form>
<?php else: ?>
<?php $token = signIn($_POST['username'], $_POST['password']); ?>
<form method="post" action="<?=urldecode($_GET['source'])?>">
<p class="mt-4">
Folgende Daten werden, wenn Du auf <strong>Daten übermitteln</strong> klickst,
an <code class="select-all"><?= htmlspecialchars($_GET['source']) ?></code>
übermittelt:
</p>
<p class="mt-4">
<label>
Token:<br>
<input type="text" name="token" required readonly class="border-b block w-full select-all"
value="<?= htmlspecialchars(signIn($_POST['username'], $_POST['password'])) ?>">
</label>
</p>
<p class="mt-4 clear-both">
Um den Vorgang abzubrechen, kannst du die Seite einfach schließen.
</p>
<p class="mt-4">
<button type="submit"
class="bg-primary rounded-full px-4 py-2 float-right text-white" autofocus
>
Daten übermitteln
</button>
</p>
<?php endif; ?>
<?php else: ?>
<p class="text-red-600 mt-4">
<strong>Fehler: Es konnte keine Weiterleitungs-URL festgestellt werden.</strong>
<br>
Bitte kehre zur Ursprungsseite zurück und versuche es erneut. Bleibt das Problem bestehen, wende dich
bitte
an die WüSpace-IT-Fachleute.
</p>
<?php endif; ?>
</div>
</body>
</html>