diff options
author | Alexander_Kabui | 2024-02-16 18:41:08 +0300 |
---|---|---|
committer | Alexander_Kabui | 2024-02-16 18:41:08 +0300 |
commit | fba0da25d86caec697cf35efe54569a67283e9d3 (patch) | |
tree | 444642ce192bdc344dce703a09f4dc96fafdaffe /gn2 | |
parent | b37955cdd8fe476b2d3f4b2471edbd96a7cd11bc (diff) | |
download | genenetwork2-fba0da25d86caec697cf35efe54569a67283e9d3.tar.gz |
Add gnqa error page
Diffstat (limited to 'gn2')
-rw-r--r-- | gn2/wqflask/templates/gnqa_errors.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gn2/wqflask/templates/gnqa_errors.html b/gn2/wqflask/templates/gnqa_errors.html new file mode 100644 index 00000000..3a0e0bf7 --- /dev/null +++ b/gn2/wqflask/templates/gnqa_errors.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} +{% block title %}GNQNA{% endblock %} + +{% block content %} <!-- Start of body --> + + +{% block css %} +<link rel="stylesheet" type="text/css" href="/static/new/css/llm.css"> +{% endblock %} + + +<style type="text/css"> + +</style> + +<div style="min-height: 50vh;width: 100vw;text-align: center;display:flex;justify-content: center;align-items: center;"> + <div> + <h2 style="color:red;text-decoration: underline;font-weight: bold;">Error: + {{error}} </h2> + </div> + +</div> + + +<script src="{{ url_for('js', filename='jquery/jquery.min.js') }}" type="text/javascript"></script> + +<script type="text/javascript"> +</script> + +{% endblock %} + |