-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.php
54 lines (48 loc) · 1.44 KB
/
error.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
<!DOCTYPE html>
<html lang="da">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title data-l10n="TITLE_LOGIN_ERROR">Grammateket Login Error</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="static/komma.css?<?=filemtime(__DIR__.'/static/komma.css');?>">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="static/l10n.js"></script>
</head>
<body>
<div id="container">
<div id="headbar">
<div id="logo">
<div id="logo-back">
<div id="logo-back-left"></div>
<a href="./"><span class="icon icon-logo"></span><span>Grammateket</span></a>
<div id="logo-back-right"></div>
</div>
</div>
</div>
<div id="content">
<div id="login">
<b>
<?php
if (!empty($_REQUEST['error_message'])) {
echo htmlspecialchars($_REQUEST['error_message']);
}
?>
</b>
<br>
<a href="./login.php">MV-ID Login</a>
</div>
</div>
<div id="footbar">
<div id="footer">
<a data-l10n-href="HREF_MV_PRIVACY" href="https://vitec-mv.com/dk/privatlivspolitik" data-l10n="LBL_PRIVACY">Privatlivspolitik</a>
-
<a href="https://grammarsoft.com/" data-l10n="LBL_COPYRIGHT">© 2017 GrammarSoft ApS</a>
-
<a href="https://vitec-mv.com/" data-l10n="LBL_DISTRIBUTED">Distribueret af Vitec MV</a>
</div>
</div>
</div>
</body>
</html>