35 lines
1.3 KiB
Plaintext
35 lines
1.3 KiB
Plaintext
<!--pages/meeting/meeting.wxml-->
|
|
<view>
|
|
<form bindsubmit="formSubmit" class="form-box">
|
|
<view class="form-item">
|
|
<view class="text-label">手机号</view>
|
|
<view class="text-value">
|
|
<input name="phone" value="{{phone}}" placeholder="请输入手机号" />
|
|
</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="text-label">验证码</view>
|
|
<view class="text-value">
|
|
<input name="verifyCode" value="{{verifyCode}}" placeholder="请输入验证码" />
|
|
</view>
|
|
<view wx:if="{{showGetCaptcha}}" class="captcha" bindtap="getVerCode">获取验证码</view>
|
|
<view wx:else="{{showGetCaptcha}}" class="captcha count">{{count}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="text-label">密码</view>
|
|
<view class="text-value">
|
|
<input name="newPassword" value="{{newPassword}}" placeholder="请输入密码" />
|
|
</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="text-label">确认密码</view>
|
|
<view class="text-value">
|
|
<input name="verifyPassword" value="{{verifyPassword}}" placeholder="请确认密码" />
|
|
</view>
|
|
</view>
|
|
<view class="btn-area">
|
|
<button type="primary" formType="submit">登录</button>
|
|
</view>
|
|
</form>
|
|
</view>
|