rustdesk-api-server/api/templates/msg.html
2023-12-14 12:11:19 +08:00

12 lines
314 B
Python

{% extends "base.html" %}
{% block title %}{{title}}{% endblock %}
{% block legend_name %}信息{% endblock %}
{% block content %}
<div style="padding: 20px; background-color: #F2F2F2;">
<div class="layui-row layui-col-space15">
{% autoescape off %}
{{msg}}
{% endautoescape %}
</div></div>
{% endblock %}