21 lines
835 B
Plaintext
21 lines
835 B
Plaintext
<!--pages/meeting/meeting.wxml-->
|
|
<view class="container-box">
|
|
<text class="set-password">初次登录请设置密码</text>
|
|
<form bindsubmit="formSubmit" class="form-box">
|
|
<view class="form-item">
|
|
<view class="text-label">密码</view>
|
|
<view class="text-value">
|
|
<input name="newPassword" bindblur="bindBlurInput" value="{{newPassword}}" type="password" placeholder="请输入密码" />
|
|
</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="text-label">确认密码</view>
|
|
<view class="text-value">
|
|
<input name="verifyPassword" bindblur="bindBlurInput" value="{{verifyPassword}}" type="password" placeholder="请确认密码" />
|
|
</view>
|
|
</view>
|
|
<view class="btn-area">
|
|
<button type="primary" formType="submit">登录</button>
|
|
</view>
|
|
</form>
|
|
</view> |