add generic template

This commit is contained in:
KF7EEL 2021-12-08 20:25:09 -08:00
parent 6c3ee7ee78
commit aa3271255f
2 changed files with 13 additions and 1 deletions

View File

@ -1127,7 +1127,7 @@ def hbnet_web_service():
<h2 style="text-align: center;"><a href="update_ids?callsign=''' + current_user.username + '''">Yes, update my information.</a></h2>
'''
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'])

View File

@ -0,0 +1,12 @@
{% extends 'flask_user/_public_base.html' %}
{% block content %}
<p>&nbsp;</p>
<div class="row">
{{markup_content}}
</div>
{% endblock %}