2020-09-09 20:19:07 +01:00
|
|
|
|
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block main %}
|
|
|
|
<h2>Oh Snap! An error occured</h2>
|
|
|
|
<p>Error Code: {{code}}</p>
|
|
|
|
<p>Error Description: {{description}}</p>
|
2020-09-11 17:22:05 +01:00
|
|
|
<!--<section>
|
2020-09-09 20:19:07 +01:00
|
|
|
<style>
|
|
|
|
#puzzle{
|
|
|
|
height: 40vh;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<div id="puzzle"></div>
|
|
|
|
<script src="{{url_for('static',filename='js/missing_puzzle.js')}}"></script>
|
2020-09-11 17:22:05 +01:00
|
|
|
</section>-->
|
|
|
|
<section>
|
|
|
|
<style>
|
|
|
|
#chemical{
|
|
|
|
height: 40vh;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<div id="chemical"></div>
|
|
|
|
<script src="{{url_for('static',filename='js/chemical.js')}}"></script>
|
2020-09-09 20:19:07 +01:00
|
|
|
</section>
|
|
|
|
{% endblock %}
|