mirror of
https://github.com/lucaspalomodevelop/Party.git
synced 2026-03-20 02:56:10 +00:00
35 lines
853 B
HTML
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> |