Files
Owlbot/owlbot/templates/connect_error.html
T
LogalDeveloper 5443aa86ce
CI / Formatting (push) Successful in 5s
CI / Linting (push) Successful in 5s
CI / Tests (Python 3.12) (push) Successful in 2m48s
CI / Tests (Python 3.13) (push) Successful in 2m49s
CI / Tests (Python 3.14) (push) Successful in 2m43s
CI / Type Checking (push) Successful in 9s
CI / Spelling (push) Successful in 5s
Added browser sessions and protected route support.
2026-05-04 21:01:57 -04:00

16 lines
443 B
HTML

{% extends "base.html" %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
<h1 class="mb-3">{{ title }}</h1>
<div class="alert alert-warning" role="alert">
<p class="mb-0">{{ body_message }}</p>
{% if command_message is none %}
<p class="mb-0">Run <code>{{ command_prefix }}connect</code> in chat and try again.</p>
{% else %}
<p class="mb-0">{{ command_message }}</p>
{% endif %}
</div>
{% endblock %}