php-censor/src/PHPCI/View/Session.phtml

60 lines
1.6 KiB
PHTML
Raw Normal View History

<?php use PHPCI\Helper\Lang; ?>
2014-05-08 22:38:32 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<title><?php Lang::out('log_in_to_phpci'); ?></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">
2015-10-15 11:41:35 +02:00
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/js/bootstrap.min.js" type="text/javascript"></script>
2014-05-08 22:38:32 +02:00
<style type="text/css">
html {
min-height: 100%;
}
body
{
2016-07-19 13:05:02 +02:00
background: #224466;
2014-05-08 22:38:32 +02:00
min-height: 100%;
font-family: Roboto, Arial, Sans-Serif;
font-style: normal;
font-weight: 300;
padding-top: 0px;
}
#login-box
{
2016-07-19 13:05:02 +02:00
background: #fcfcfc;
2014-05-08 22:38:32 +02:00
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;
}
#phpci-logo img {
margin-bottom: 30px;
}
</style>
</head>
<body>
<div class="container">
<div class="row" style="margin-top: 10%; text-align: center">
2016-07-19 13:05:02 +02:00
<a id="phpci-logo" href="/">
<img src="<?php print PHPCI_URL; ?>assets/img/php-censor-logo.png">
2014-05-08 22:38:32 +02:00
</a>
<div class="" id="login-box">
<?php print $content; ?>
</div>
</div>
</div>
</body>
</html>