17 lines
463 B
PHP
17 lines
463 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><?php if (isset($site_name)) echo $site_name ?><?php if (isset($auth_message)) echo ' - '.$auth_message ?></title>
|
|
<link rel="stylesheet" type="text/css" href="<?php echo base_url() ?>resources/appunto-auth/css/login.css" />
|
|
</head>
|
|
<body>
|
|
|
|
<div class="login-form-box">
|
|
<?php if (isset($auth_message)) { ?>
|
|
<div class="login-form-auth-message"><?php echo $auth_message ?></div>
|
|
<?php } ?>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|