diff options
-rw-r--r-- | app/templates/error.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/templates/error.html b/app/templates/error.html new file mode 100644 index 0000000..3073037 --- /dev/null +++ b/app/templates/error.html @@ -0,0 +1,17 @@ + +{% extends 'base.html' %} + +{% block main %} + <h2>Oh Snap! An error occured</h2> + <p>Error Code: {{code}}</p> + <p>Error Description: {{description}}</p> + <section> + <style> + #puzzle{ + height: 40vh; + } + </style> + <div id="puzzle"></div> + <script src="{{url_for('static',filename='js/missing_puzzle.js')}}"></script> + </section> +{% endblock %}
\ No newline at end of file |