You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
835 B
23 lines
835 B
<!--subpages/settings/pages/changePassword/changePassword.wxml-->
|
|
<view class="card">
|
|
<view class="item">
|
|
<view class="label">原密码</view>
|
|
<view class="input">
|
|
<input bindinput="changeOldPassword" type="password" placeholder="请输入"/>
|
|
</view>
|
|
</view>
|
|
<view class="item">
|
|
<view class="label">新密码</view>
|
|
<view class="input">
|
|
<input bindinput="changeNewPassword" type="password" placeholder="请输入"/>
|
|
</view>
|
|
</view>
|
|
<view class="item no-pseudo">
|
|
<view class="label">确认密码</view>
|
|
<view class="input">
|
|
<input bindinput="changeConfirmPassword" type="password" placeholder="请输入"/>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<button hover-class="btn-hover" bind:tap="handelSubmit">提交</button>
|
|
|