File size: 743 Bytes
616bff2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Login</title>
    <link rel="stylesheet" href="{{url_for('static',filename='css/login_style.css')}}">
</head>
<body>
    <form action="/login" class="form" method="post">
        <h1 id="title" class="element">Enter your Information</h1>
        <label for="name" class="element">Username:</label>
        <input type="text" id="name" class="element" name="name">
        <label for="password" class="element">Password:</label>
        <input type="text" id="password" class="element" name="password">
        <button type="submit" class="element">Login</button>
    </form>
</body>
</html>