1
0
Fork 0
mirror of https://github.com/Lynnesbian/FediBooks/ synced 2024-09-28 23:23:04 +00:00
FediBooks/templates/login.html

30 lines
702 B
HTML
Raw Normal View History

2019-08-29 01:15:15 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>FediBooks</title>
{% include 'imports.html' %}
</head>
<body>
<div class="container">
2019-08-29 01:15:47 +00:00
<h1 class="thin centred">Log in</h1>
2019-08-29 01:15:15 +00:00
</div>
2019-08-29 01:15:47 +00:00
2019-08-29 01:35:06 +00:00
<div class="container centred">
<form action="/do/login" method="POST">
<p>
<label for="email" class="important">Email</label>
2019-08-29 01:15:47 +00:00
<input type="email" name="email" placeholder="you@example.com">
<br>
2019-08-29 01:35:06 +00:00
<label for="password" class="important">Password</label>
2019-08-29 01:15:47 +00:00
<input type="password" name="password" placeholder="password">
2019-08-29 01:35:06 +00:00
</p>
<input type="submit" value="Log in" class="button btn-primary full-width">
</form>
2019-08-29 01:15:15 +00:00
</div>
2019-08-29 01:15:47 +00:00
{% include 'footer.html' %}
</body>
2019-08-29 01:15:15 +00:00
</html>