Party/templates/logout.html
fingadumbledore 6e09268a3f new
2022-10-19 10:58:01 +02:00

35 lines
853 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">
<style>
Body {
background-image: linear-gradient(to right, rgb(38, 134, 62), rgb(89, 89, 175))
}
button {
background-color: #4CAF50;
width: 100%;
color: orange;
padding: 15px;
margin: 10px 0px;
border: none;
cursor: pointer;
border-radius: 12px;
}
</style>
</head>
<body>
<center>
<h1>Adios</h1>
<a href="http://127.0.0.1:5000/">
<button class="btn btn-primary btn-lg">Home</button>
</a>
</center>
</body>
</html>