aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/api_error.html
blob: 1a44f610e74a1f4c8004be01368f0841b637b45e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}
{% block body %}

<center>
<div style="font-size: 8em;">{{ api_error.status or "" }}</div>
<div style="font-size: 3em;">{{ api_error.reason or "" }}</div>
</center>

<div class="ui icon error message">
  <i class="ban icon"></i>
  <div class="content">
    <div class="header">
      API Error: {{ api_error.error_name or "" }}
    </div>
    <p>{{ api_error.message or "" }}
  </div>
</div>


{% endblock %}