rDrama/files/templates/message_success.html

18 lines
454 B
HTML
Raw Normal View History

2021-10-15 14:08:27 +00:00
{% extends "default.html" %}
{% block title %}
2022-01-06 16:46:09 +00:00
<title>{{title}}</title>
2021-10-15 14:08:27 +00:00
{% endblock %}
{% block pagetype %}message-success{% endblock %}
{% block content %}
<div class="text-center py-7 py-md-8">
2021-12-24 23:00:09 +00:00
<img loading="lazy" src="/static/assets/images/ruckus.webp" class="empty-state-img mb-3" alt="success state">
2021-10-15 14:08:27 +00:00
<div class="font-weight-bold text-muted mb-4">{{title}}</div>
2022-01-06 16:46:09 +00:00
<p class="text-muted">{{message}}</p>
2021-10-15 14:08:27 +00:00
</div>
{% endblock %}