AIRA/src/frontend/logout.html

37 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>AIRA - Logged out</title>
<link rel="icon" type="image/svg" href="/static/imgs/icons/logo">
<link rel="stylesheet" href="/static/commons/style.css">
<style>
body {
margin: 0;
height: 100%;
background-image: url("/static/imgs/wallpaper");
background-repeat: no-repeat;
background-position: center;
background-color: black;
}
main {
padding: 50px;
}
img {
display: block;
width: 40%;
margin: auto;
}
p {
text-align: center;
font-size: 1.2em;
}
</style>
</head>
<body>
<main class="card">
<img src="/static/imgs/frog">
<p>You've been successfully logged out.</p>
</main>
</body>
</html>