24 lines
635 B
HTML
24 lines
635 B
HTML
<!DOCTYPE html>
|
|
<html lang="de" xmlns:th="https://www.thymeleaf.org/">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
<link th:href="@{/styles/allreadyVoted.css}" rel="stylesheet" />
|
|
</head>
|
|
|
|
<body class="center-screen">
|
|
<div class="centered">
|
|
<h1>Du bist leider zu spät</h1>
|
|
<h2>Momentan ist hier auf der Seite nichts los</h2>
|
|
<button id="backButton" class="submitButton">Zur Adolfinum Seite</button>
|
|
</div>
|
|
|
|
<script>
|
|
document.getElementById("backButton").onclick = function() {
|
|
location.href = "https://adolfinum.de";
|
|
};
|
|
</script>
|
|
</body>
|
|
|
|
</html> |