SOITA/templates/welcome.html

12 lines
389 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>
<h3>Get started now</h3>
<button onclick="location.href = 'users/login'">Already have an account</button>
<button onclick="location.href = 'users/register'">Create new account</button>
{% endblock %}