diff --git a/ietf/templates/mailinglists/list_wizard.html b/ietf/templates/mailinglists/list_wizard.html
new file mode 100644
index 000000000..742383963
--- /dev/null
+++ b/ietf/templates/mailinglists/list_wizard.html
@@ -0,0 +1,39 @@
+{% extends "mailinglists/list_wizard_base.html" %}
+
+{% block mlcontent %}
+
+
+{% endblock %}
diff --git a/ietf/templates/mailinglists/list_wizard_base.html b/ietf/templates/mailinglists/list_wizard_base.html
new file mode 100644
index 000000000..e71b5aa0b
--- /dev/null
+++ b/ietf/templates/mailinglists/list_wizard_base.html
@@ -0,0 +1,25 @@
+{% extends "base.html" %}
+
+{% block title %}IETF Mailing List Form{% endblock %}
+
+{% block css %}
+ul.errorlist { color: red; border: 1px solid red; }
+{% block mlcss %}{% endblock %}
+{% endblock %}
+
+{% block head %}
+
+{% endblock %}
+
+{% block content %}
+
+
+
+
+
+{% block mlcontent %}
+form goes here
+{% endblock %}
+
+
+{% endblock %}