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.
17 lines
632 B
17 lines
632 B
<view class="container">
|
|
<form bindsubmit="changePassword" bindreset="onFormReset">
|
|
<view class="input-wrap">
|
|
<input password auto-focus name="old_password" placeholder="原密码"/>
|
|
</view>
|
|
<view class="input-wrap">
|
|
<input password name="password" placeholder="新密码"/>
|
|
</view>
|
|
<view class="input-wrap">
|
|
<input password name="password_confirmation" placeholder="请再次输入新密码"/>
|
|
</view>
|
|
<view class="buttons">
|
|
<button form-type="submit" type="main">确认</button>
|
|
<button form-type="reset" type="main" plain>返回</button>
|
|
</view>
|
|
</form>
|
|
</view> |