tetratto/crates/app/src/public/html/misc/index.html

27 lines
918 B
HTML
Raw Normal View History

{% extends "root.html" %} {% block head %}
2025-03-31 19:31:36 -04:00
<title>{{ config.name }}</title>
{% endblock %} {% block body %}
<main class="flex justify-center" style="padding-top: 2rem">
<div class="flex flex-col gap-2" style="width: 20rem; max-width: 100%">
<h1 class="w-full text-center">{{ config.name }}</h1>
<div class="card flex flex-col gap-2">
<a href="/auth/login" class="button w-full">
{{ icon "log-in" }}
<span>{{ text "auth:action.login" }}</span>
</a>
<a href="/auth/register" class="button w-full secondary">
{{ icon "heart" }}
<span>{{ text "auth:action.register" }}</span>
</a>
2025-03-21 01:37:00 -04:00
</div>
2025-03-31 19:31:36 -04:00
<a href="/popular" class="button w-full quaternary">
{{ icon "trending-up" }}
<span>Explore popular feed</span>
</a>
2025-03-21 01:37:00 -04:00
</div>
</main>
{% endblock %}