mirror of
https://github.com/Lynnesbian/FediBooks/
synced 2024-11-04 23:58:58 +00:00
36 lines
653 B
HTML
36 lines
653 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>FediBooks</title>
|
|
{% include 'imports.html' %}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h1 class="thin centred">Welcome!</h1>
|
|
</div>
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="column">
|
|
<p class="centred">
|
|
<a class="button btn-primary btn-large">Log in</a>
|
|
<br>
|
|
Log in to your existing account.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="column">
|
|
<p class="centred">
|
|
<a class="button btn-primary btn-large">Sign up</a>
|
|
<br>
|
|
Create a new account.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% include 'footer.html' %}
|
|
</body>
|
|
</html>
|