mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.8 KiB
53 lines
1.8 KiB
9 years ago
|
<html><head>
|
||
|
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
||
|
<title>忘记密码</title>
|
||
|
|
||
|
<link href="/static/css/bootstrap.min.css" rel="stylesheet">
|
||
|
<link href="/static/font-awesome/css/font-awesome.css" rel="stylesheet">
|
||
|
|
||
|
<link href="/static/css/animate.css" rel="stylesheet">
|
||
|
<link href="/static/css/style.css" rel="stylesheet">
|
||
|
|
||
|
<style type="text/css"></style></head>
|
||
|
|
||
|
<body class="gray-bg">
|
||
|
|
||
|
<div class="lock-word animated fadeInDown">
|
||
|
<span class="first-word">Jumperver</span>
|
||
|
</div>
|
||
|
<div class="middle-box text-center lockscreen animated fadeInDown">
|
||
|
<div>
|
||
|
<div class="m-b-md">
|
||
|
{# <img alt="image" class="img-circle circle-border" src="https://s3.amazonaws.com/uifaces/faces/twitter/ok/128.jpg">#}
|
||
|
{% if error %}
|
||
|
<div class="alert alert-warning text-center">{{ error }}</div>
|
||
|
{% endif %}
|
||
|
{% if msg %}
|
||
|
<div class="alert alert-success text-center">{{ msg }}</div>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
<h3>忘记密码</h3>
|
||
|
<p>请输入您原来的信息</p>
|
||
|
<form class="m-t" role="form" action="" method="post">
|
||
|
<div class="form-group">
|
||
|
<input type="text" name='username' class="form-control" placeholder="Username" required="">
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<input type="text" name='email' class="form-control" placeholder="Email" required="">
|
||
|
</div>
|
||
|
<button type="submit" class="btn btn-primary block full-width">确定</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!-- Mainly scripts -->
|
||
|
<script src="/static/js/jquery-2.1.1.js"></script>
|
||
|
<script src="/static/js/bootstrap.min.js"></script>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</body></html>
|