This commit is contained in:
doudoudzj 2019-06-26 02:51:54 +08:00
parent 82b5967c57
commit c8aa241511
3 changed files with 5 additions and 5 deletions

View file

@ -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");

View file

@ -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>

View file

@ -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");