php-censor/src/View/Session.phtml

30 lines
1,008 B
PHTML
Raw Normal View History

2016-07-19 20:28:11 +02:00
<?php use PHPCensor\Helper\Lang; ?>
2014-05-08 22:38:32 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
2016-07-21 19:02:11 +02:00
<title><?php Lang::out('log_in_to_app'); ?></title>
2014-05-08 22:38:32 +02:00
2014-12-10 15:04:16 +01:00
<meta charset="UTF-8">
2014-05-08 22:38:32 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="<?= APP_URL; ?>assets/vendor/admin-lte/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="<?= APP_URL; ?>assets/css/login.css" rel="stylesheet" type="text/css" />
2014-05-08 22:38:32 +02:00
</head>
<body>
<div class="container">
2017-08-13 16:02:02 +02:00
<div class="row">
2016-07-21 19:02:11 +02:00
<a id="logo" href="/">
<img src="<?= APP_URL; ?>assets/img/php-censor-white.svg" alt="PHP Censor" width="290" height="auto" /><br />
2014-05-08 22:38:32 +02:00
</a>
<div class="" id="login-box">
<?= $content; ?>
2014-05-08 22:38:32 +02:00
</div>
</div>
</div>
2017-08-13 16:02:02 +02:00
<script src="<?= APP_URL; ?>assets/vendor/admin-lte/plugins/jQuery/jquery-2.2.3.min.js"></script>
<script src="<?= APP_URL; ?>assets/vendor/admin-lte/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
2017-08-13 16:02:02 +02:00
2014-05-08 22:38:32 +02:00
</body>
</html>