mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-22 11:38:42 +00:00
refactor(reset_pw): bootstrap5
This commit is contained in:
parent
c115329147
commit
35c77868aa
@ -1,4 +1,8 @@
|
||||
<?php
|
||||
requireLib('bootstrap5');
|
||||
requireLib('dialog');
|
||||
requireLib('md5');
|
||||
|
||||
if (!isset($_GET['p'])) {
|
||||
become404Page();
|
||||
}
|
||||
@ -46,24 +50,30 @@ if (isset($_POST['reset'])) {
|
||||
die(resetPassword());
|
||||
}
|
||||
?>
|
||||
<?php
|
||||
$REQUIRE_LIB['dialog'] = '';
|
||||
$REQUIRE_LIB['md5'] = '';
|
||||
?>
|
||||
<?php echoUOJPageHeader('更改密码') ?>
|
||||
<h2 class="page-header">更改密码</h2>
|
||||
<form id="form-reset" class="form-horizontal">
|
||||
<div id="div-password" class="form-group">
|
||||
<label for="input-password" class="col-sm-2 control-label">新密码</label>
|
||||
<div class="col-sm-3">
|
||||
<input type="password" class="form-control" id="input-password" name="password" placeholder="输入新密码" maxlength="20" />
|
||||
<input type="password" class="form-control top-buffer-sm" id="input-confirm_password" placeholder="再次输入新密码" maxlength="20" />
|
||||
<span class="help-block" id="help-password"></span>
|
||||
|
||||
<?php echoUOJPageHeader(UOJLocale::get('reset password')) ?>
|
||||
|
||||
<form id="form-reset" class="card mw-100 mx-auto" style="width:600px">
|
||||
<div class="card-body">
|
||||
<h1 class="card-title text-center mb-3">
|
||||
<?= UOJLocale::get('reset password') ?>
|
||||
</h1>
|
||||
<div class="mb-1">
|
||||
<label for="input-username" class="form-label"><?= UOJLocale::get('username') ?></label>
|
||||
<input type="text" class="form-control" value="<?= $user['username'] ?>" disabled />
|
||||
</div>
|
||||
<div id="div-password" class="mb-1">
|
||||
<label for="input-password" class="form-label">
|
||||
<?= UOJLocale::get('new password') ?>
|
||||
</label>
|
||||
<input type="password" class="form-control" id="input-password" name="password" placeholder="<?= UOJLocale::get('enter your password') ?>" maxlength="20" />
|
||||
<input type="password" class="form-control mt-2" id="input-confirm_password" placeholder="<?= UOJLocale::get('re-enter your password') ?>" maxlength="20" />
|
||||
<span class="help-block invalid-feedback" id="help-password"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="col-sm-offset-2 col-sm-3">
|
||||
<button type="submit" id="button-submit" class="btn btn-secondary">提交</button>
|
||||
<div class="text-center">
|
||||
<button type="submit" id="button-submit" class="btn btn-primary">
|
||||
<?= UOJLocale::get('submit') ?>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
@ -74,12 +84,13 @@ $REQUIRE_LIB['md5'] = '';
|
||||
ok &= getFormErrorAndShowHelp('password', validateSettingPassword);
|
||||
return ok;
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
$('#form-reset').submit(function(e) {
|
||||
if (!validateResetPwPost()) {
|
||||
return false;
|
||||
}
|
||||
$.post(<?= json_encode($_SERVER['REQUEST_URI']) ?>, {
|
||||
$.post(<?= json_encode(UOJContext::requestURI()) ?>, {
|
||||
reset: '',
|
||||
newPW: md5($('#input-password').val(), "<?= getPasswordClientSalt() ?>")
|
||||
}, function(res) {
|
||||
@ -116,4 +127,5 @@ $REQUIRE_LIB['md5'] = '';
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<?php echoUOJPageFooter() ?>
|
||||
|
@ -39,6 +39,7 @@ return [
|
||||
'new password' => 'New password',
|
||||
'current password' => 'Current password',
|
||||
'confirm new password' => 'Confirm new password',
|
||||
'reset password' => 'Reset Password',
|
||||
'verification code' => 'Verification code',
|
||||
'email' => 'Email',
|
||||
'QQ' => 'QQ',
|
||||
|
@ -39,6 +39,7 @@ return [
|
||||
'new password' => '新密码',
|
||||
'current password' => '当前密码',
|
||||
'confirm new password' => '确认新密码',
|
||||
'reset password' => '重置密码',
|
||||
'verification code' => '验证码',
|
||||
'email' => 'Email',
|
||||
'QQ' => 'QQ',
|
||||
|
Loading…
Reference in New Issue
Block a user