Files
order/web/templates/error/error.html
2019-07-18 08:59:26 +08:00

10 lines
401 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "common/layout_user.html" %}
{% block content %}
<div class="row">
<div class="panel panel-default gray-bg text-center" style="min-height: 600px;line-height: 600px;">
<div class="panel-body gray-bg" style="font-size: 18px;">
<p>{{ msg }}<a href="{{ buildUrl('/') }}">返回首页</a></p>
</div>
</div>
</div>
{% endblock %}