Files
OMS/app/wap/view/store/user_passwd.html
2025-12-28 23:13:25 +08:00

56 lines
2.2 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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.
<!--
Copyright © ShopeX http://www.shopex.cn. All rights reserved.
See LICENSE file for license details.
-->
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="renderer" content="webkit">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta name="author" content="tyler chao">
<meta name="keywords" content="keywords">
<meta name="description" content="description">
<title>修改密码</title>
<link rel="stylesheet" href="<{$env.app.res_url}>/css/mobile.min.css">
<link rel="stylesheet" href="<{$env.app.res_url}>/css/main.min.css">
</head>
<body>
<{if $show_header}>
<header class="fixed">
<div class="top-bar" data-topbar>
<div class="pos-left">
<a href="javascript:history.back();" class="icon-arrow-back"></a>
</div>
<h1>修改密码</h1>
<div class="pos-right"><a href="" class="icon-refresh"></a></div>
</div>
</header>
<{/if}>
<main id="main" class="container no-margin">
<h2> </h2>
<form action="<{$delivery_link.passwd}>" method="post" data-validator="ajax" class="form-inline">
<div class="form-row">
<div class="grid-4"><label for="pass1">原始密码:</label></div>
<div class="grid-1"><input type="password" name="old_password" id="old_password" required data-alerts="请输入原始密码"></div>
</div>
<div class="form-row">
<div class="grid-4"><label for="pass2">新密码:</label></div>
<div class="grid-1"><input type="password" name="new_password" id="new_password" required data-alerts="请输入新密码"></div>
</div>
<div class="form-row">
<div class="grid-4"><label for="pass3">再次输入密码:</label></div>
<div class="grid-1"><input type="password" name="new_password2" id="new_password2" required data-validator-equalto="#new_password" data-alerts="两次密码输入不一致"></div>
</div>
<div class="action-bar">
<button type="submit" class="primary expand">保存</button>
</div>
</form>
</main>
<{include file="store/footer.html"}>
</body>
</html>