创建版本

This commit is contained in:
2021-02-22 12:17:00 +08:00
commit af555f49c3
2332 changed files with 369202 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title><?php echo isset($title) ? $title : ''; ?></title>
<link href="<?php echo URL::to('assets'); ?>/css/app.css" rel="stylesheet">
</head>
<body>
<div class="text-center wrapper-xl">
<i class="fa fa-5x fa-ban text-muted"></i>
<h1><?php echo isset($title) ? $title : ''; ?></h1>
<h4><?php echo isset($message) ? $message : ''; ?></h4>
<div class="padder-v m-t">
<a href="javascript:history.back();" class="btn btn-sm btn-default">返回上一页</a>
<a href="<?php echo URL::to('/'); ?>" class="btn btn-sm btn-info">返回首页</a>
</div>
<div class="m-t">
<small class="text-muted">© {{date('Y')}}</small>
</div>
</div>
</body>
</html>
+41
View File
@@ -0,0 +1,41 @@
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
<style>
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
color: #B0BEC5;
display: table;
font-weight: 100;
font-family: 'Lato';
}
.container {
text-align: center;
display: table-cell;
vertical-align: middle;
}
.content {
text-align: center;
display: inline-block;
}
.title {
font-size: 72px;
margin-bottom: 40px;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<div class="title">Be right back.</div>
</div>
</div>
</body>
</html>
+42
View File
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>信息提示</title>
<link href="<?php echo URL::to('assets'); ?>/dist/app.min.css" rel="stylesheet">
<style type="text/css">
.window {
font: 12px 'Lucida Grande', Verdana, sans-serif;
color: #58666e;
margin-left:-240px;
margin-top:-100px;position:absolute;left:50%;top:50%;display:block;
width: 480px;
height: 160px;
}
.data { padding: 5px 0; font-size: 16px; text-align: center; }
a {
color:#999;
}
a:hover {
color:#666;
}
</style>
</head>
<body>
<div class="window">
<div class="panel">
<div class="panel-body">
<div class="data">
<?php echo $data; ?>
</div>
</div>
<div class="panel-footer">
<a class="btn btn-sm btn-default" href="javascript:javascript:history.go(-1);"><i class="fa fa-mail-reply"></i> 返回</a>
<!--
<a href="javascript:top.location.href=<?php echo URL::to('/'); ?>">返回首页</a>
-->
</div>
</div>
</div>
</body>
</html>
+43
View File
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>信息提示</title>
<link href="<?php echo URL::to('assets'); ?>/css/app.css" rel="stylesheet">
<style type="text/css">
.window {
font: 12px 'Lucida Grande', Verdana, sans-serif;
color: #58666e;
margin-left:-240px;
margin-top:-100px;position:absolute;left:50%;top:50%;display:block;
width: 480px;
height: 160px;
}
.h5 { padding: 5px 0; }
a {
color:#999;
}
a:hover {
color:#666;
}
</style>
</head>
<body>
<div class="window">
<div class="panel b-a">
<div class="panel-heading no-border bg-info dk"><strong>信息提醒</strong></div>
<div class="panel-body">
<p class="h5" align="center">
<strong><?php echo $message; ?></strong>
</p>
<?php if($html): ?>
<div align="center"><?php echo $html; ?></div>
<?php endif; ?>
</div>
<div class="panel-footer">
<a href="<?php echo URL::to('/'); ?>">返回首页</a>
</div>
</div>
</div>
</body>
</html>