password.html
2.96 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>密码-{$tpshop_config['shop_info_store_title']}</title>
<meta http-equiv="keywords" content="{$tpshop_config['shop_info_store_keyword']}" />
<meta name="description" content="{$tpshop_config['shop_info_store_desc']}" />
<link rel="stylesheet" href="__STATIC__/css/index.css" type="text/css">
<script src="__STATIC__/js/jquery-1.10.2.min.js"></script>
<script src="__STATIC__/js/slider.js"></script>
<script src="__PUBLIC__/js/global.js"></script>
<script src="__PUBLIC__/js/pc_common.js"></script>
</head>
<body style="background:RGB(242,242,242)">
<div class="uc">
<div class="uc_head">
<div class="uc_head_middle">
<div class="uc_head_middle_left">修改密码</div>
<div class="uc_head_middle_right"><a class="logout_c" href="/">首页</a> | <a class="logout_c" href="javascript:history.back(-1)">返回</a></div>
</div>
</div>
<div class="uc_body pa-to-30">
<div class="uc_body_form">
<form action="" method="post">
<table class="changeAccount_theme">
<tbody>
<tr class="tr_height">
<td class="cl_left fo-si-12" align="right"><label class="fo-si-12">原密码:</label></td>
<td class="cl_middle">
<input type="password" class="imput_text text_width foce" id="old_password" name="old_password">
</td>
<td>
</td>
</tr>
<tr class="tr_height">
<td class="cl_left fo-si-12" align="right"><label class="fo-si-12">新密码:</label></td>
<td class="cl_middle">
<input type="password" class="imput_text text_width foce" id="new_password" name="new_password" >
</td>
<td>
</td>
</tr>
<tr class="tr_height">
<td class="cl_left fo-si-12" align="right"><label class="fo-si-12">确认密码:</label></td>
<td class="cl_middle">
<input type="password" class="imput_text text_width foce" id="confirm_password" name="confirm_password">
</td>
<td>
</td>
</tr>
<tr class="tr_height">
<td valign="middle" align="center" colspan="3" style="height:120px;">
<input type="submit" value="提交" class="btn_midefy" id="btn_next">
</td>
</tr>
<tr>
<td colspan="3"></td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
</div>
</body>
</html>