Files

26 lines
1.3 KiB
Plaintext

<!--pages/meeting/meeting.wxml-->
<view class="container-box">
<text class="set-password">初次登录请设置密码</text>
<form bindsubmit="formSubmit" class="form-box">
<view class="item">
<view class="label">密码</view>
<view class="value text-password">
<input name="newPassword" bindinput="handlePasswordInput" value="{{newPassword}}" password="{{show}}" placeholder="请输入密码" />
<image src="../../assets/images/show.png" class="show" wx:if="{{!show}}" bindtap="showPassword"></image>
<image src="../../assets/images/none.png" class="show" wx:if="{{show}}" bindtap="showPassword"></image>
</view>
</view>
<view class="item">
<view class="label">确认密码</view>
<view class="value text-password">
<input name="verifyPassword" bindinput="handleVerifyPasswordInput" value="{{verifyPassword}}" password="{{showVerify}}" placeholder="请输入确认密码" />
<image src="../../assets/images/show.png" class="show" wx:if="{{!showVerify}}" bindtap="showPasswordVerify"></image>
<image src="../../assets/images/none.png" class="show" wx:if="{{showVerify}}" bindtap="showPasswordVerify"></image>
</view>
</view>
<view class="btn-area">
<button type="primary" formType="submit">登录</button>
</view>
</form>
</view>