Authentication branch

This commit is contained in:
Jordan Stremming
2019-03-20 16:28:32 -05:00
parent 05c716d2d9
commit e6016ea10f
3 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{#
LIKELY NOT NEEDED :)
Authentication will occur on SPLASH page?
#}
{% extends 'base.jinja2' %}
{% set navbar_shadow = True %}
{% block title %}Login{% endblock %}
{% block content %}
{% endblock %}

View File

@@ -0,0 +1,8 @@
{% extends 'base.jinja2' %}
{% set navbar_shadow = True %}
{% block title %}Logout{% endblock %}
{% block content %}
{% endblock %}

View File

@@ -0,0 +1,8 @@
{% extends 'base.jinja2' %}
{% set navbar_shadow = True %}
{% block title %}Register{% endblock %}
{% block content %}
{% endblock %}