diff --git a/templates/sso/character.html b/templates/sso/character.html
new file mode 100644
index 0000000..a038a36
--- /dev/null
+++ b/templates/sso/character.html
@@ -0,0 +1,22 @@
+{% extends "base.html" %}
+
+{% block content %}
+
+
{{ character.name }}
+
+
+- Race: {{ character.race }}
+- Gender: {{ character.gender }}
+- Corporation: {{ character.corporation.name }}
+
+
+
+| Stat | Value |
+| Intelligence | {{ character.attrib_intelligence }} |
+| Memory | {{ character.attrib_memory }} |
+| Charisma | {{ character.attrib_charisma }} |
+| Perception | {{ character.attrib_perception }} |
+| Willpower | {{ character.attrib_willpower }} |
+
+
+{% endblock %}
diff --git a/templates/sso/characterlist.html b/templates/sso/characterlist.html
new file mode 100644
index 0000000..f26eba4
--- /dev/null
+++ b/templates/sso/characterlist.html
@@ -0,0 +1,18 @@
+{% extends "base.html" %}
+
+{% block content %}
+
+Character List
+
+{% if characters %}
+
+| Character Name | Corp |
+{% for char in characters %}
+| {{ char.name }} |
+ {{ char.corp }} |
+
+{% endfor %}
+
+{% endif %}
+
+{% endblock %}