mirror of
https://github.com/lucaspalomodevelop/Party.git
synced 2026-03-13 08:09:37 +00:00
29 lines
904 B
HTML
29 lines
904 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<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') }}">
|
|
<title>Change Session</title>
|
|
</head>
|
|
<body>
|
|
<center>
|
|
<h1>Du bist bereits in Session: </h1>
|
|
<p id="Session"></p>
|
|
<h1>Möchtest du diese Verlassen, und in eine andere Session?</h1>
|
|
|
|
<a href="http://127.0.0.1:5000/logout">
|
|
<button type="submit">verlassen</button>
|
|
</a>
|
|
<a href="javascript:history.back()">
|
|
<button type="button" class="cancelbtn"> bleiben</button>
|
|
</a>
|
|
|
|
<script>
|
|
let session = sessionStorage.getItem("sessionID");
|
|
document.getElementById("Session").innerHTML = session;
|
|
</script>
|
|
</center>
|
|
</body>
|
|
</html> |