12 lines
389 B
HTML
12 lines
389 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>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 %}
|
|
|