17 lines
455 B
HTML
17 lines
455 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Logout | {{ appName }}</title>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<p>You have been logged out</p>
|
|
<p><a href="{{ url_for('index') }}">Log back in</a></p>
|
|
</div>
|
|
<script>
|
|
document.cookie = "auth_token=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;";
|
|
</script>
|
|
</body>
|
|
</html> |