53 lines
1.2 KiB
HTML
Executable File
53 lines
1.2 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Token Expired</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f8f9fa;
|
|
text-align: center;
|
|
padding: 50px;
|
|
}
|
|
.container {
|
|
max-width: 400px;
|
|
margin: auto;
|
|
background: white;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
h1 {
|
|
color: #d9534f;
|
|
}
|
|
p {
|
|
color: #6c757d;
|
|
}
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 10px 20px;
|
|
margin-top: 20px;
|
|
font-size: 16px;
|
|
color: #fff;
|
|
background-color: #007bff;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
}
|
|
.btn:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<h1>Token Expired</h1>
|
|
<p>Sorry, the reset link has expired.</p>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|