12 lines
382 B
HTML
12 lines
382 B
HTML
{% extends "authBase.html" %}
|
|
|
|
{% block title %}Super Original and Innovative Test App{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Super Original and Innovative Test App</h2>
|
|
<h3>Zacznij już teraz!</h3>
|
|
<button onclick="location.href = 'users/login'">Zaloguj się</button>
|
|
<button onclick="location.href = 'users/register'">Stwórz nowe konto</button>
|
|
{% endblock %}
|
|
|