42 lines
1.1 KiB
HTML
Executable File
42 lines
1.1 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="ja">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>無効なパスワードリセットリンク</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f3f4f6;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
.container {
|
|
background-color: white;
|
|
padding: 2rem;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
width: 100%;
|
|
max-width: 400px;
|
|
text-align: center;
|
|
}
|
|
h1 {
|
|
color: #1f2937;
|
|
margin-bottom: 1rem;
|
|
}
|
|
p {
|
|
color: #4b5563;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>無効なリンク</h1>
|
|
<p>このパスワードリセットリンクは無効です。新しいリセットリンクを要求してください。</p>
|
|
</div>
|
|
</body>
|
|
</html>
|