php-censor/src/PHPCensor/View/Session.phtml
2017-01-04 17:53:48 +07:00

67 lines
1.8 KiB
PHTML

<?php use PHPCensor\Helper\Lang; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<title><?php Lang::out('log_in_to_app'); ?></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="<?php print APP_URL; ?>assets/vendor/admin-lte/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="<?php print APP_URL; ?>assets/vendor/admin-lte/plugins/jQuery/jquery-2.2.3.min.js"></script>
<script src="<?php print APP_URL; ?>assets/vendor/admin-lte/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<style type="text/css">
html {
min-height: 100%;
}
body
{
background: #1e282c;
min-height: 100%;
font-style: normal;
font-weight: 300;
padding-top: 0px;
}
#login-box
{
background: #fcfcfc;
border-radius: 5px;
box-shadow: 0 0 30px rgba(0,0,0, 0.3);
margin: 0 auto;
padding: 15px 30px;
text-align: left;
width: 350px;
}
#logo, #logo:visited, #logo:hover, #logo:active {
text-decoration: none;
font-size: 45px;
line-height: 90px;
text-align: center;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
padding: 0 15px;
font-weight: 600;
overflow: hidden;
color: white;
}
</style>
</head>
<body>
<div class="container">
<div class="row" style="margin-top: 10%; text-align: center">
<a id="logo" href="/">
PHP Censor
</a>
<div class="" id="login-box">
<?php print $content; ?>
</div>
</div>
</div>
</body>
</html>