Files
private-cloud/console/web/index.html
2022-03-03 20:05:51 +08:00

65 lines
3.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="zh-cmn">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
<meta name="description" content="index page of IRext">
<meta name="author" content="strawmanbobi">
<title data-i18n="page_index.title">IRext</title>
<link rel="stylesheet" href="./public_js/bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./public_js/bower_components/toastr/toastr.min.css">
<link rel="stylesheet" href="css/cover.css">
</head>
<body class="page_index" style="background: #3F3F3F; color: #FFFFFF;">
<div class="navbar container">
<div class="header clearfix">
<h3 data-i18n="page_index.title">IRext 本地控制台 - 1.2.7</h3>
</div>
</div>
<div class="container">
<div class="container">
<div class="form-signin" style="margin-top: 100px;">
<h4 class="text-muted" data-i18n="page_index.d_signin_title" style="color: #FFFFFF;">登入</h4>
<label for="user_name" class="sr-only" data-i18n="page_index.d_signin_email">邮件地址</label>
<input type="email" id="user_name" class="form-control" placeholder="Email" required autofocus>
<label for="password" class="sr-only" data-i18n="page_index.d_signin_password">密码</label>
<input type="password" id="password" class="form-control" placeholder="Password" required>
<div class="row">
<div class="col-lg-12">
<button class="btn btn-lg btn-info" style="width: 100%;" data-i18n="page_index.d_signin_signin" onclick="signIn();">登入</button>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="changepw_confirm_dialog" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"
aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title" style=" color: #000;" data-i18n="page_index.d_changepw_title">重置密码</h4>
</div>
<div class="modal-body">
<div id="changepw_hint" style="color: #000;" data-i18n="page_index.d_changepw_hint">系统会自动为你挑选一个6位随机数的新密码并发送到你的邮件确认更改密码</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" onclick="changePassword();" data-i18n="page_index.d_changepw_confirm">确定</button>
<button type="button" class="btn btn-primary" data-dismiss="modal" data-i18n="page_index.d_changepw_cancel">取消</button>
</div>
</div>
</div>
</div>
</body>
<script src="./public_js/bower_components/jquery/dist/jquery.min.js"></script>
<script src="./public_js/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="./public_js/bower_components/toastr/toastr.min.js"></script>
<script src="./public_js/bower_components/highcharts/highcharts.js"></script>
<script src="./public_js/i18n/i18next-1.11.2.min.js"></script>
<script src="./public_js/utils/url_parser.js"></script>
<script src="./public_js/utils/ciphering.js"></script>
<script src="./js/index.js"></script>
</html>