diff --git a/data/www/admin/base.html b/data/www/admin/base.html
new file mode 100644
index 0000000..d28debb
--- /dev/null
+++ b/data/www/admin/base.html
@@ -0,0 +1,13 @@
+{% extends "base" %}
+{% block title %}{{ title }}{% endblock %}
+{% block main %}
+
{{title}}
+
+ You have reached the {{title}}. This site can be used by
+ the host of the challenge to see the challenge progress, solution, and
+ hints for that challenge. This site is NOT part of the
+ challenge.
+
- You have reached the {{title}}. This site can be used by
- the host of the challenge to see the challenge progress, solution, and
- hints for that challenge. This site is NOT part of the
- challenge.
-
diff --git a/data/www/user/base.html b/data/www/user/base.html
new file mode 100644
index 0000000..2ec39e6
--- /dev/null
+++ b/data/www/user/base.html
@@ -0,0 +1,12 @@
+{% extends "base" %}
+{% block title %}{{ title }}{% endblock %}
+{% block main %}
+
{{title}}
+
+ You have reached the {{title}}. This site can be used by the
+ contestants see the challenges and their progress and hints for that
+ challenge. This site is NOT part of the challenge.
+
+
+{% block content %}{% endblock content %}
+{% endblock %}
diff --git a/data/www/details.html b/data/www/user/details.html
similarity index 89%
rename from data/www/details.html
rename to data/www/user/details.html
index 9ae5f60..65185b4 100644
--- a/data/www/details.html
+++ b/data/www/user/details.html
@@ -1,6 +1,6 @@
-{% extends "base" %}
+{% extends "user:base" %}
{% block title %}{{ title }}{% endblock %}
-{% block main %}
+{% block content %}
{{title}} User Interface
You have reached the {{title}} User
@@ -13,8 +13,8 @@