示例#1
0
文件: http403.php 项目: johnstyle/sjo
        h1{font-weight:300;font-size:15em;color:#a0a0a0}
        h2{font-weight:300;font-size:3em;color:#afafaf}
        h3{font-weight:300;font-size:2em;margin-bottom:5px}
        p{font-weight:300;font-size:1.3em;line-height:1.5}
        #error{padding-bottom:30px;margin-bottom:50px}
        #message{background:#e0e0e0;padding:20px 0;margin-top:25px}
        @media screen and (max-width: 640px) {
            body{font-size:12px}
        }
    </style>
</head>
<body>
    <div id="error">
        <h1>403</h1>
        <h2><?php 
Lib\I18n::_e('Forbidden!');
?>
</h2>
    </div>
    <div id="message">
        <h3><?php 
Lib\I18n::_e('We Are Sory');
?>
</h3>
        <p><?php 
Lib\I18n::_e('You do not have permission to access this page.');
?>
</p>
    </div>
</body>
</html>
示例#2
0
文件: http404.php 项目: johnstyle/sjo
        h2{font-weight:300;font-size:3em;color:#afafaf}
        h3{font-weight:300;font-size:2em;margin-bottom:5px}
        p{font-weight:300;font-size:1.3em;line-height:1.5}
        #error{padding-bottom:30px;margin-bottom:50px}
        #message{background:#e0e0e0;padding:20px 0;margin-top:25px}
        @media screen and (max-width: 640px) {
            body{font-size:12px}
        }
    </style>
</head>
<body>
    <div id="error">
        <h1>404</h1>
        <h2><?php 
Lib\I18n::_e('Page Not Found!');
?>
</h2>
    </div>
    <div id="message">
        <h3><?php 
Lib\I18n::_e('We Are Sory');
?>
</h3>
        <p><?php 
Lib\I18n::_e('This could be the result of the page being removed,
         the name being changed or the page being temporarily unavailable.');
?>
</p>
    </div>
</body>
</html>
示例#3
0
文件: Auth.php 项目: johnstyle/sjo
    <meta charset="<?php 
echo SJO_CHARSET;
?>
">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <base href="<?php 
echo SJO_BASEHREF;
?>
" />
    <title><?php 
Lib\I18n::_e('Authentification');
?>
</title>
    <meta name="description" content="<?php 
Lib\I18n::_e('Authentification');
?>
">
    <?php 
if (Helper\Style::hasRegistry()) {
    ?>
        <?php 
    Helper\Style::applyRegistry();
    ?>
    <?php 
}
?>
    <style type="text/css">
        body{background:#333}
        form{background:#fff;width:300px;margin:150px auto 0;padding:0 20px 20px;border:5px solid #000;border-radius:10px;box-shadow:0 0 10px #000}
    </style>