diff --git a/templates/base.html b/templates/base.html
index e2c180de7..5af87990a 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -7,7 +7,8 @@
-
{{ title }}
+ {% block title %}{{ title }}{% endblock title %}
+
{% block head %}{% endblock head %}
diff --git a/templates/login_options.html b/templates/login_options.html
index c287f13f0..4825e7451 100644
--- a/templates/login_options.html
+++ b/templates/login_options.html
@@ -1,7 +1,9 @@
{% extends 'base.html' %}
+{% block title %}Login to Gooey.AI{% endblock title %}
+
{% block head %}
- Login - Gooey.AI
+
{% endblock %}