53 lines
2.5 KiB
HTML
53 lines
2.5 KiB
HTML
{% extends "oj_base.html" %}
|
|
{% block title %}
|
|
找回登录信息
|
|
{% endblock %}
|
|
{% block body %}
|
|
<div class="container main">
|
|
<div class="col-md-6 col-md-offset-3">
|
|
<h2 class="text-center">找回登录信息</h2><br>
|
|
<br>
|
|
|
|
<form id="login-form">
|
|
<div class="form-group">
|
|
<label for="email">注册电子邮件地址</label>
|
|
<input type="text" class="form-control input-lg" name="email" value="{{ user.email }}" readonly>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="username">用户名</label>
|
|
<input type="text" class="form-control input-lg" name="username" value="{{ user.username }}" readonly>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="new_password">新密码</label>
|
|
<input type="password" class="form-control input-lg" id="new_password" name="new_password"
|
|
placeholder="新密码" maxlength="30" data-minlength="6" data-error="密码不得少于6位" required>
|
|
|
|
<div class="help-block with-errors"></div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="confirm_password">确认密码</label>
|
|
<input type="password" class="form-control input-lg" id="confirm_password" name="confirm_password"
|
|
placeholder="确认密码" maxlength="30" data-match="#new_password" data-error="请输入确认密码"
|
|
data-match-error="两次密码不一致"
|
|
required>
|
|
|
|
<div class="help-block with-errors"></div>
|
|
</div>
|
|
<div class="form-group" id="captcha-area">
|
|
<label for="captcha">验证码</label> <img src="/captcha/" id="captcha-img">
|
|
<small><p></p></small>
|
|
<input type="text" class="form-control input-lg" id="captcha" name="captcha"
|
|
placeholder="验证码" maxlength="4" data-error="请填写验证码" required>
|
|
|
|
<div class="help-block with-errors"></div>
|
|
</div>
|
|
<div class="form-group">
|
|
<button type="submit" class="btn btn-primary">提交</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% block js_block %}
|
|
<script src="/static/js/app/oj/account/resetPassword.js"></script>
|
|
{% endblock %} |