-
Notifications
You must be signed in to change notification settings - Fork 0
/
sz_3.html
109 lines (105 loc) · 5.11 KB
/
sz_3.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<meta charset="utf-8" />
<link rel="stylesheet" href="./css/bootstrap.min.css" />
<link rel="stylesheet" href="./css/AdminLTE.min.css" />
<link rel="stylesheet" href="./css/_all-skins.min.css" />
<link rel="stylesheet" href="./css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="css/main_custrom.css">
<link href="lib/toastr.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/base.css">
<script src="./js/jquery.min.js"></script>
<script src="lib/toastr.js" type="text/javascript"></script>
<script src="./js/bootstrap.js"></script>
<script src="./js/adminlte.min.js"></script>
<script src="https://cdn.bootcss.com/vue/2.2.2/vue.min.js"></script>
<script src="https://cdn.bootcss.com/vue-resource/1.5.1/vue-resource.min.js"></script>
<script src="lib/toastr.js" type="text/javascript"></script>
</head>
<body class="skin-blue sidebar-mini fixed sidebar-mini-expand-feature">
<div id="app_topside">
<topside v-bind:username="username":isshow="isshow"></topside>
</div>
<div class="main" id="app" v-cloak>
<div id="app_leftside"><leftside></leftside></div>
<div class="main_content_qb">
<div class="qb_menu">
<div class="yu_title_1"><a href="sz_1.html">个人中心</a> ></div>
<div class="qb_menu_2 qb_main_color">设置邮箱</div>
</div>
<div class="clear_height"></div>
<div class="qb_main col-md-12">
<div class="clear_right_height"></div>
<div class="col-md-12">
<div class="sz_main_left">新邮箱:</div>
<div class="sz_main_right sz_bolder"><input id ="account" v-model="account" placeholder="请输入新邮箱地址" class="form-control sz_input" value=""></div>
</div>
<div class="clear_right_height"></div>
<div class="col-md-12">
<div class="sz_main_left">验证码:</div>
<div class="sz_main_right sz_bolder"><input id ="inputsmsCode" v-model="inputsmsCode" class="form-control sz_input" value=""></div>
<div class="qb_main_yzm">
<input type="button" id="btn" value="获取验证码" class="btn btn-info send_btn" style="width: 110px;font-weight: bold" onclick="getPicCode()"/>
</div>
</div>
<div class="clear_right_height"></div>
<div class="col-md-12">
<div class="sz_main_left">登陆密码:</div>
<div class="sz_main_right sz_bolder"><input class="form-control sz_input" id ="password" type="password" value=""></div>
</div>
<div class="clear_right_height"></div>
<div class="col-md-12">
<div class="qb_main_right">
<button type="button" class="btn btn-primary qb_btn_color" onclick="ok()">确认</button>
<a class="qb_btn_qx" onclick="window.open('sz_1.html','_self')">取消并返回</a>
</div>
</div>
<div class="clear_right_height"></div>
</div>
</div>
<div id="app_footerside">
<footerside></footerside>
</div>
<!-- 模态框(Modal) -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog" style="width: 400px;">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
×
</button>
图像验证码
</div>
<div style="margin-left:20px;margin-top:20px;margin-bottom:20px;align:center">
<img id="img_code" src='img/loading.gif' style="display: none; margin-left: 160px; margin-top: 20px" />
<img id="load_img" style="width: 350px;cursor:pointer;" onclick="getPicCode()" />
<br>
<input style="width:350px;height:50px" id="picCode" type="text" placeholder="请输入验证码"/>
</div>
<div class="modal-footer" style="padding-left:160px">
<button type="button" class="btn btn-primary qb_btn_color" onclick="getCode()">确认</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal -->
</div>
<script type="application/javascript">
$(function () {
var h = document.documentElement.offsetHeight
$(".qb_main").height(h-140);
// 设定主菜单选择项
$("#sz").addClass("active treeview");
// 设定子菜单选择项
$("#sz1").addClass("active");
});
$(window).resize(function() {
var h = document.documentElement.offsetHeight
$(".qb_main").height(h-140);
});
</script>
<script src="./js/base.js"></script>
<script src="./js/sz_3.js"></script>
</body>
</html>