update
This commit is contained in:
parent
82b5967c57
commit
c8aa241511
3 changed files with 5 additions and 5 deletions
|
@ -6,5 +6,5 @@ include("{$ROOT}/core/controllers/about.php");
|
|||
|
||||
include("{$ROOT}/core/views/header.php");
|
||||
include("{$ROOT}/core/views/navbar.php");
|
||||
include("{$section_page}");
|
||||
include($section_page);
|
||||
include("{$ROOT}/core/views/footer.php");
|
||||
|
|
|
@ -11,7 +11,7 @@ if (!defined('IN_SYS')) {
|
|||
<div class="col-md-6 col-sm-6 margin-auto">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Login</h3>
|
||||
<h3 class="panel-title"><?php echo I18N('login'); ?></h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<?php if (!isAdminLoggedIn()) { ?>
|
||||
|
@ -21,8 +21,8 @@ if (!defined('IN_SYS')) {
|
|||
<input type="text" name="username" class="form-control" maxlength="18" placeholder="Username" autofocus required>
|
||||
</label>
|
||||
<label>
|
||||
<span>Password:</span>
|
||||
<input type="password" name="password" class="form-control" maxlength="35" placeholder="Password" required>
|
||||
<span><?php echo I18N('password'); ?>:</span>
|
||||
<input type="password" name="password" class="form-control" maxlength="35" placeholder="<?php echo I18N('password'); ?>" required>
|
||||
</label>
|
||||
<label>
|
||||
<span>Captcha:</span>
|
||||
|
|
|
@ -6,5 +6,5 @@ include("{$ROOT}/core/controllers/legal.php");
|
|||
|
||||
include("{$ROOT}/core/views/header.php");
|
||||
include("{$ROOT}/core/views/navbar.php");
|
||||
include("{$section_page}");
|
||||
include($section_page);
|
||||
include("{$ROOT}/core/views/footer.php");
|
||||
|
|
Loading…
Add table
Reference in a new issue