diff --git a/templates/auth/login.html b/templates/auth/login.html
index e69de29..35adec8 100644
--- a/templates/auth/login.html
+++ b/templates/auth/login.html
@@ -0,0 +1,23 @@
+{% extends "base.html" %}
+{% block title %}Log In{% endblock %}
+{% block content %}
+
Log In
+
+{% endblock %}
diff --git a/templates/auth/register.html b/templates/auth/register.html
index e69de29..86d6e1c 100644
--- a/templates/auth/register.html
+++ b/templates/auth/register.html
@@ -0,0 +1,29 @@
+{% extends "base.html" %}
+{% block title %}Register{% endblock %}
+{% block content %}
+ Create Account
+
+{% endblock %}
diff --git a/templates/base.html b/templates/base.html
index e69de29..92acdea 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -0,0 +1,37 @@
+
+
+
+
+
+ {% block title %}MyApp{% endblock %}
+
+
+
+
+
+
+ {% with messages = get_flashed_messages(with_categories=true) %}
+ {% if messages %}
+ {% for category, message in messages %}
+
{{ message }}
+ {% endfor %}
+ {% endif %}
+ {% endwith %}
+
+ {% block content %}{% endblock %}
+
+
+
diff --git a/templates/index.html b/templates/index.html
index e69de29..dc58f49 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -0,0 +1,9 @@
+{% extends "base.html" %}
+{% block title %}Home{% endblock %}
+{% block content %}
+ Welcome{% if current_user.is_authenticated %}, {{ current_user.username }}{% endif %}!
+ {% if not current_user.is_authenticated %}
+ Please log in or
+ create an account.
+ {% endif %}
+{% endblock %}