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