diff --git a/web/app.py b/web/app.py
index c14f147..e2a88cb 100644
--- a/web/app.py
+++ b/web/app.py
@@ -1127,7 +1127,7 @@ def hbnet_web_service():
'''
- return render_template('flask_user_layout.html', markup_content = Markup(content))
+ return render_template('generic.html', markup_content = Markup(content))
@app.route('/email_user', methods=['POST', 'GET'])
diff --git a/web/templates/generic.html b/web/templates/generic.html
new file mode 100644
index 0000000..4b6251b
--- /dev/null
+++ b/web/templates/generic.html
@@ -0,0 +1,12 @@
+{% extends 'flask_user/_public_base.html' %}
+{% block content %}
+
+
+
+
+
+{{markup_content}}
+
+
+
+{% endblock %}