| <!DOCTYPE html>
|
| <html>
|
| <head>
|
| <title>Login</title>
|
| <link rel="stylesheet" href="{{ url_for('static', filename='space-theme.css') }}">
|
| </head>
|
| <body>
|
| <div class="stars">
|
| <div class="star" style="top: 10%; left: 20%; width: 2px; height: 2px;"></div>
|
| <div class="star" style="top: 30%; left: 70%; width: 3px; height: 3px;"></div>
|
| <div class="star" style="top: 60%; left: 40%; width: 1.5px; height: 1.5px;"></div>
|
| <div class="star" style="top: 80%; left: 80%; width: 2.5px; height: 2.5px;"></div>
|
| <div class="star" style="top: 50%; left: 10%; width: 1px; height: 1px;"></div>
|
| <div class="star" style="top: 20%; left: 90%; width: 2px; height: 2px;"></div>
|
| <div class="star" style="top: 75%; left: 55%; width: 1.5px; height: 1.5px;"></div>
|
| <div class="star" style="top: 40%; left: 60%; width: 2.5px; height: 2.5px;"></div>
|
| </div>
|
| <div class="container">
|
| <h2>Login</h2>
|
| <form method="POST">
|
| <label>Username:</label>
|
| <input type="text" name="username" required><br><br>
|
|
|
| <label>Password:</label>
|
| <input type="password" name="password" required><br><br>
|
|
|
| <label>
|
| <input type="checkbox" name="remember"> Remember Me
|
| </label><br><br>
|
|
|
| <button type="submit">Login</button>
|
| </form>
|
| <p>Don't have an account? <a href="{{ url_for('signup') }}">Signup here</a></p>
|
| </div>
|
| </body>
|
| </html>
|
|
|