mirror of
https://github.com/lucaspalomodevelop/Party.git
synced 2026-03-13 16:14:36 +00:00
31 lines
1013 B
HTML
31 lines
1013 B
HTML
<html>
|
|
<head>
|
|
<title>logout 👋</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 👋</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> |