Spaces:
sahanind
/
No application file

File size: 662 Bytes
f710fc8
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "layout.html" %}

{% block content %}
    <h1 class="title">Login</h1>
    <form class = "loginpage" action="{{ url_for('login') }}" method="post">
        <label for="username"><i class="fa-solid fa-at form-button"></i> Username:</label>
        <input class = "login-input" type="text" id="username" name="username" placeholder="username...">
        <label for="password"><i class="fa-solid fa-lock form-button"></i> Password:</label>
        <input class = "login-input" type="password" id="password" name="password" placeholder="password..." required>
        <input class = "login-button" type="submit" value="Login">
    </form>
{% endblock %}