SOITA/templates/welcome.html

12 lines
382 B
HTML
Raw Normal View History

2021-12-20 19:40:24 +01:00
{% extends "authBase.html" %}
{% block title %}Super Original and Innovative Test App{% endblock %}
{% block content %}
<h2>Super Original and Innovative Test App</h2>
2022-01-25 18:17:58 +01:00
<h3>Zacznij już teraz!</h3>
<button onclick="location.href = 'users/login'">Zaloguj się</button>
<button onclick="location.href = 'users/register'">Swtórz nowe konto</button>
2021-12-20 19:40:24 +01:00
{% endblock %}