-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathlogin.html
More file actions
44 lines (36 loc) · 1.36 KB
/
login.html
File metadata and controls
44 lines (36 loc) · 1.36 KB
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
38
39
40
41
42
43
{% extends "layout.html" %}
{% block title %}
Log In
{% endblock %}
{% block main %}
<!-- Link to external CSS file for styling the page -->
<link href="/static/form.css" rel="stylesheet">
<!-- Form for user login -->
<div class="stack-area">
<div class="center" id="div">
<form action="/login" method="post">
<span class="section">
<div class="head">Sign in</div>
<!-- Input field for username -->
<span class="inputf">
<label for="username" class="label"> Enter your username: </label>
<input autofocus class="form-control mx-auto w-auto" id="username" name="username" placeholder="Username" type="text" required>
</span>
<!-- Input field for password -->
<span class="inputf">
<label for="password" class="label"> Enter your password: </label>
<input class="form-control mx-auto w-auto" id="password" name="password" placeholder="Password" type="password" required="">
</span>
<!-- Link to the registration page for creating a new account -->
<div class="info">
<div class="info">
<a href="/register">No account? Create one!</a>
</div>
</div>
<!-- Button to submit the form -->
<button class="button-35" type="submit">Sign in</button>
</span>
</form>
</div>
</div>
{% endblock %}