This repository has been archived on 2026-03-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cau-praktikum/app/templates/index.html
T

15 lines
479 B
HTML

{% extends "base_public.html" %} {% block title %}Chess{% endblock %} {% block
content %}
<section class="public-card">
<h1>Play Chess</h1>
<p class="muted">
Play games and challenge your friends. You just log in or create a new
account below.
</p>
<div class="public-actions">
<a href="{{ url_for('auth.login') }}" class="link-button">Login</a>
<a href="{{ url_for('auth.register') }}" class="link-button">Register</a>
</div>
</section>
{% endblock %}