diff --git a/src/registrar/templates/home.html b/src/registrar/templates/home.html
index f6601d25c..c6de271d1 100644
--- a/src/registrar/templates/home.html
+++ b/src/registrar/templates/home.html
@@ -17,9 +17,37 @@
This is the .gov registrar.
{% if user.is_authenticated %}
-Click here to log out.
+
+{% if domain_applications %}
+Your domain applications
+
+ Your domain applications
+
+
+ Name |
+ Status |
+
+
+
+ {% for application in domain_applications %}
+
+ {{ application.requested_domain.website }} |
+ {{ application.status }} |
+
+ {% endfor %}
+
+
+{% endif %}
+
+Apply
+
+Edit profile
+
+CISA admin panel
+
+Click here to log out.
{% else %}
-Click here to log in.
+Click here to log in.
{% endif %}
{% endblock %}
diff --git a/src/registrar/views/index.py b/src/registrar/views/index.py
index e4acc7818..6d50b3948 100644
--- a/src/registrar/views/index.py
+++ b/src/registrar/views/index.py
@@ -1,6 +1,12 @@
from django.shortcuts import render
+from registrar.models import DomainApplication
+
def index(request):
"""This page is available to anyone without logging in."""
- return render(request, "home.html")
+ context = {}
+ if request.user.is_authenticated:
+ applications = DomainApplication.objects.filter(creator=request.user)
+ context["domain_applications"] = applications
+ return render(request, "home.html", context)