diff --git a/templates/404.html b/templates/404.html
new file mode 100644
index 0000000..e69de29
diff --git a/templates/sso/user.html b/templates/sso/user.html
new file mode 100644
index 0000000..8450143
--- /dev/null
+++ b/templates/sso/user.html
@@ -0,0 +1,62 @@
+{% block content %}
+
+
{{user.username}}'s Profile
+
+Username: {{ user.username }}
+Email: {{ user.email }}
+
+{% if is_admin %}
+Service Accounts
+{% if services %}
+
+| Service | Username | Password | Active |
+{% for acc in services %}
+| {{ acc.service }} |
+ {{ acc.username }} |
+ ****** |
+ {{ acc.active }} |
+
+{% endfor %}
+
+{% endif %}
+
+Eve API Keys
+{% if eveaccounts %}
+
+| User ID | API Key | Description | Active |
+{% for acc in eveaccounts %}
+| {{ acc.api_user_id }} |
+ {{ acc.api_key }} |
+ {{ acc.description }} |
+ {{ acc.api_status }} |
+
+{% endfor %}
+
+{% endif %}
+
+{% if characters %}
+
+| Character Name | Corp |
+{% for char in characters %}
+| {{ char.name }} |
+ {{ char.corp }} |
+
+{% endfor %}
+
+{% endif %}
+
+
+Reddit Accounts
+{% if reddits %}
+
+| Username | Created Date |
+{% for acc in reddits %}
+| {{ acc.username }} |
+ {{ acc.date_created }} |
+
+{% endfor %}
+
+{% endif %}
+{% endif %}
+
+{% endblock %}