26 lines
1.2 KiB
Plaintext
26 lines
1.2 KiB
Plaintext
<loading wx:if="{{!show}}">加载中...</loading>
|
|
<view class="page">
|
|
<view class="fui-cell-group">
|
|
<view class="fui-cell must">
|
|
<view class="fui-cell-label">手机号</view>
|
|
<view class="fui-cell-info">{{mobile}}</view>
|
|
</view>
|
|
<view class="fui-cell must">
|
|
<view class="fui-cell-label">登录密码</view>
|
|
<view class="fui-cell-info">
|
|
<input bindinput="inputChange" class="fui-input" maxlength="16" minlength="6" placeholder="请输入您的登录密码6~16位" type="password" value="{{password}}"></input>
|
|
</view>
|
|
</view>
|
|
<view class="fui-cell must">
|
|
<view class="fui-cell-label">确认密码</view>
|
|
<view class="fui-cell-info">
|
|
<input bindinput="iptChange" class="fui-input" maxlength="16" minlength="6" placeholder="请输入确认登录密码" type="password" value="{{password1}}"></input>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view bindtap="submit" class="btn btn-danger block">{{subtext}}</view>
|
|
<view class="fui-toast {{FoxUIToast.show?'in':'out'}}">
|
|
<view class="text">{{FoxUIToast.text}}</view>
|
|
</view>
|
|
</view>
|