Merge branch 'feature-15313/reihungstest_danke_popup_beim_logout'

This commit is contained in:
Andreas Österreicher
2022-02-28 11:41:45 +01:00
2 changed files with 32 additions and 1 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ if (isset($_GET['logout']) && $_GET['logout'] == true)
echo '
<script language="Javascript">
location = location.pathname; // clean the login.php-url from querystring
location = "logout.html"; // clean the login.php-url from querystring
parent.menu.location = parent.menu.location.pathname; // clean the menu.php-url from querystring
parent.topbar.location = parent.topbar.location.pathname; // clean the topbar.php-url from querystring
</script>
+31
View File
@@ -0,0 +1,31 @@
<!DOCTYPE HTML>
<html>
<head>
<title>TestTool - FH Technikum Wien</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="../../vendor/twbs/bootstrap/dist/css/bootstrap.min.css">
<link href="../../skin/style.css.php" rel="stylesheet" type="text/css">
</head>
<body>
<div class="row">
<div class="col-xs-11">
<div class="row" style="margin-bottom: 20px; margin-top: 3%;">
<div class="col-xs-6 text-center" style="border-right: 1px solid lightgrey; float: left">
<h1 style="white-space: normal">Vielen Dank für die Teilnahme an unserem Aufnahmeverfahren.</h1>
<br/><br/>
Die zuständige Assistenz wird sich in den nächsten Tagen bei Ihnen melden.
<br/><br/>
<a href="login.php" class="btn btn-default">Zurück zur Startseite</a>
</div>
<div class="col-xs-6 text-center" style="float: left">
<h1 style="white-space: normal">Thank you for participating in our admission procedure.</h1>
<br/><br/>
The assistant in charge will contact you in the next few days.
<br/><br/>
<a href="login.php" class="btn btn-default">Back to startpage</a>
</div>
</div>
</div>
</div>
</body>
</html>