File size: 1,480 Bytes
2cc60b4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!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>