login_pwd_info.html 2.1 KB
Newer Older
G
gongfuxiang 已提交
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
{{include file="public/header" /}}

<!-- header top nav -->
{{include file="public/header_top_nav" /}}

<!-- search -->
{{include file="public/nav_search" /}}

<!-- header nav -->
{{include file="public/header_nav" /}}

<!-- goods category -->
{{include file="public/goods_category" /}}

<!-- content -->
<div class="am-container user-main">

	<!-- user menu start -->
	{{include file="public/user_menu" /}}
	<!-- user menu end -->

	<!-- content start -->
	<div class="user-content">
		<div class="user-content-body">
			<!-- form start -->
			<form class="am-form form-validation view-save" action="{{:url('index/safety/loginpwdupdate')}}" method="POST" request-type="ajax-url" request-value="{{:url('index/safety/index')}}">
				<legend>
D
语言  
devil_gong 已提交
28
					<span class="legend-title">登录密码修改</span>
D
devil_gong 已提交
29
					<a href="{{:url('index/safety/index')}}" class="am-fr am-icon-mail-reply"> 返回</a>
G
gongfuxiang 已提交
30 31
				</legend>
				<div class="am-form-group">
D
语言  
devil_gong 已提交
32 33
					<label>当前密码</label>
					<input type="password" name="my_pwd" placeholder="当前密码" pattern="{{:lang('common_regex_pwd')}}" data-validation-message="当前密码格式 6~18 个字符之间" class="am-radius" required />
G
gongfuxiang 已提交
34 35
				</div>
				<div class="am-form-group">
D
语言  
devil_gong 已提交
36 37
					<label>新密码</label>
					<input type="password" name="new_pwd" placeholder="新密码" pattern="{{:lang('common_regex_pwd')}}" data-validation-message="新密码格式 6~18 个字符之间" class="am-radius" id="new-loginpwd" required />
G
gongfuxiang 已提交
38 39
				</div>
				<div class="am-form-group">
D
语言  
devil_gong 已提交
40 41
					<label>确认密码</label>
					<input type="password" name="confirm_new_pwd" placeholder="确认密码" pattern="{{:lang('common_regex_pwd')}}" data-validation-message="确认密码格式 6~18 个字符之间,与新密码一致" class="am-radius" data-equal-to="#new-loginpwd" required />
G
gongfuxiang 已提交
42 43
				</div>
				<div class="am-form-group">
D
devil_gong 已提交
44
					<button type="submit" class="am-btn am-btn-primary am-radius btn-loading-example am-btn-sm w100" data-am-loading="{loadingText:'处理中...'}">保存</button>
G
gongfuxiang 已提交
45 46 47 48 49 50 51 52 53 54 55
				</div>
			</form>
			<!-- form end -->
		</div>
	</div>
	<!-- content end -->
</div>

<!-- footer start -->
{{include file="public/footer" /}}
<!-- footer end -->