blob: 3a0e0bf73f871d1176f74db7bf8cd9bfd7b3b2ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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 %}
|