12345678910111213141516171819202122232425262728293031323334 |
- <nav-bar navbar-data='{{nvabarData}}'></nav-bar>
- <view class="home">
- <view class="main">
- <text class="title">
- <text>请填写以下信息</text>
- </text>
- <view class="form">
- <form bindsubmit="formSubmit" bindreset="formReset">
- <view class='input-content'>
- <view class='input-col'>
- <input type='number' name="phone" bindinput="talks" placeholder='请输入您本人的手机号码' maxlength="11" placeholder-style="color:#888888;"></input>
- </view>
- <view class='input-col' style="position: relative;">
- <input type='number' name="yanzhengma" placeholder='请输入验证码' placeholder-style="color:#888888;"></input>
- <button disabled='{{disabled}}' size="mini" class="codeBtn" bindtap="getCode">{{code}}</button>
- </view>
- <view class='input-col' style='border-bottom:none'>
- <input type='text' password name="password" placeholder='请输入新密码(字母数字组合8-20位)' placeholder-style="color:#888888;"></input>
- </view>
- <view class='input-col' style='border-bottom:none'>
- <input type='text' password name="againpassword" placeholder='请再次输入密码(字母数字组合8-20位)' placeholder-style="color:#888888;"></input>
- </view>
- </view>
- <view class="save">
- <button class='save-btn' form-type="submit">立即找回</button>
- </view>
- <!-- <view class="agreement">
- <radio bindtap='radioClick' checked="{{radioCheck}}" color="#E9021D" />
- <view bindtap="agreementBtn">{{instructionBook}}<text>《企业授权协议》</text></view>
- </view> -->
- </form>
- </view>
- </view>
- </view>
|