fm453 314745edf8 优化ctms-api语法、修复已知BUG;
主要修复ctms-api、dacms对PHP新版本的支持问题
2025-04-10 23:19:15 +08:00

30 lines
1.1 KiB
PHP
Executable File
Raw 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.

<?php
?>
<div class="container" style="padding-top: 5%;">
<div class="alert alert-<?php if (isset($message['class'])) {
echo $message['class'];
} else {
echo "info";
} ?> alert-dismissible fade in" role="alert">
<button type="button" class="close" data-dismiss="alert">×</button>
<h3 style="text-align: center;text-align: -webkit-center;"><?php if (isset($message['title'])) {
echo $message['title'];
} else {
echo "系统提示";
} ?></h3>
<div><?php echo $message['content']; ?></div>
</div>
<div style="text-align: center;text-align: -webkit-center;">
<?php foreach ($message['button'] as $btn) { ?>
<a class="<?php echo $btn['class']; ?>" style="margin-right:15px;"
href="<?php echo $btn['link']; ?>"><?php echo $btn['title']; ?></a>
<?php } ?>
<a class="btn btn-default" style="margin-right:15px;" href="javascript:void(0)"
onclick="history.back();">返回</a>
</div>
</div>
<div class="container" style="margin-top:2%;text-align: center;color:#ccc;font-weight:200;">
如果使用过程中发现有任何问题,请及时反馈给技术人员。
</div>