Party/templates/logout.html
fingadumbledore cd6699afe6 d
2022-12-29 16:44:59 +01:00

31 lines
1013 B
HTML

<html>
<head>
<title>logout &#x1F44B;</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="{{ url_for('static', filename='../static/css/style.css') }}">
</head>
<body>
<center>
<h1>Adios &#x1F44B;</h1>
<p id="name"></p>
<script>
let session = sessionStorage.getItem("name");
document.getElementById("name").innerHTML = session;
</script>
<p>Wollen Sie die Session verlassen?</p>
<a href="/">
<button class="btn btn-primary btn-lg">Home</button>
</a>
<a href="javascript:history.back()">
<button type="button" class="cancelbtn"> zurück</button>
</center>
<script>
sessionStorage.clear();
</script>
</body>
</html>