Taical's picture
Upload 24 files
1155486 verified
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ログむン</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="header">
<img src="{{ url_for('static', filename='logo.png') }}" alt="チームロゴ" class="logo">
<h1>閒係者専用ログむン</h1>
</div>
<div class="container">
<div class="card fade-in-element">
<form method="post" class="login-form">
{% if error %}
<p class="error-message">{{ error }}</p>
{% endif %}
<label for="password">パスワードをε…₯εŠ›γ—γ¦γγ γ•γ„</label>
<input type="password" id="password" name="password" required>
<button type="submit" class="btn">ログむン</button>
</form>
</div>
</div>
<script src="{{ url_for('static', filename='main.js') }}"></script>
</body>
</html>