ddstats-server/views/pages/landing.njk

19 lines
481 B
Plaintext
Raw Normal View History

2021-10-30 21:39:21 +02:00
{% extends "../templates/basic.njk" %}
{% block head %}
2021-10-30 23:15:55 +02:00
<link rel="stylesheet" href="/assets/css/landing.css">
2021-10-30 21:39:21 +02:00
<title>DDStats - Welcome!</title>
{% endblock %}
{% block body %}
2021-10-30 23:15:55 +02:00
<main>
<header>
Welcome to DDStats!
</header>
2021-10-30 21:39:21 +02:00
2021-10-30 23:15:55 +02:00
<form action="/search" method="get">
<h1>Search for a player or map...</h1>
2021-11-06 16:55:37 +01:00
<input type="text" name="map" placeholder="Yumiko, Hitode, ...">
2021-10-30 23:15:55 +02:00
</form>
</main>
2021-10-30 21:39:21 +02:00
{% endblock %}