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.
26 lines
1.1 KiB
26 lines
1.1 KiB
<!--pages/forgotPassword/forgotPassword.wxml-->
|
|
<!-- 忘记密码 -->
|
|
<view class="loginBox" style="padding-top:20rpx">
|
|
<form catchsubmit="formSubmit">
|
|
<view class="forgetBox">
|
|
<view>
|
|
<text><text class="red">*</text>手机号:</text>
|
|
<input type="text" placeholder="请输入手机号" name='mobile' bindinput="mobile" />
|
|
</view>
|
|
<view>
|
|
<text><text class="red">*</text>短信验证码:</text>
|
|
<input type="text" placeholder="请输入短信验证码" name='confirmCode' />
|
|
<view class="getCode" bindtap="getCode">{{sendTime}}</view>
|
|
</view>
|
|
<view>
|
|
<text><text class="red">*</text>输入新密码:</text>
|
|
<input type="text" placeholder="请输入6-16位数字、字母或组合" name='password' password />
|
|
</view>
|
|
<view>
|
|
<text><text class="red">*</text>确认新密码:</text>
|
|
<input type="text" placeholder="请输入6-16位数字、字母或组合" name='morePassword' password />
|
|
</view>
|
|
</view>
|
|
<button formType="submit" class="login">确认</button>
|
|
</form>
|
|
</view> |