rDrama/files/templates/norules.html

26 lines
703 B
HTML
Raw Normal View History

2021-09-09 11:02:06 +00:00
{% extends "default.html" %}
{% block title %}
2021-09-12 01:41:48 +00:00
<title>Not configured</title>
2021-09-09 11:02:06 +00:00
{% endblock %}
{% block pagetype %}message{% endblock %}
{% block customPadding %}{% endblock %}
{% block content %}
<div class="row justify-content-center">
<div class="col-10 col-md-5">
<div class="text-center py-7 py-md-8">
<div class="mb-3">
2021-10-08 13:06:21 +00:00
<i class="fas text-gray-600 fa-exclamation-triangle" style="font-size: 5rem!important;"></i>
2021-09-09 11:02:06 +00:00
</div>
<h1 class="h5">You haven't set up your rules page yet</h1>
<div class="text-small text-muted mb-3">Your rules will be publicly available here.</div>
2021-09-11 03:49:59 +00:00
<a href="/admin/rules" class="btn btn-primary ">Set up rules</a>
2021-09-09 11:02:06 +00:00
</div>
</div>
</div>
{% endblock %}