index.wxml 1.6 KB

12345678910111213141516171819202122232425262728293031323334
  1. <nav-bar navbar-data='{{nvabarData}}'></nav-bar>
  2. <view class="home">
  3. <view class="main">
  4. <text class="title">
  5. <text>请填写以下信息</text>
  6. </text>
  7. <view class="form">
  8. <form bindsubmit="formSubmit" bindreset="formReset">
  9. <view class='input-content'>
  10. <view class='input-col'>
  11. <input type='number' name="phone" bindinput="talks" placeholder='请输入您本人的手机号码' maxlength="11" placeholder-style="color:#888888;"></input>
  12. </view>
  13. <view class='input-col' style="position: relative;">
  14. <input type='number' name="yanzhengma" placeholder='请输入验证码' placeholder-style="color:#888888;"></input>
  15. <button disabled='{{disabled}}' size="mini" class="codeBtn" bindtap="getCode">{{code}}</button>
  16. </view>
  17. <view class='input-col' style='border-bottom:none'>
  18. <input type='text' password name="password" placeholder='请输入新密码(字母数字组合8-20位)' placeholder-style="color:#888888;"></input>
  19. </view>
  20. <view class='input-col' style='border-bottom:none'>
  21. <input type='text' password name="againpassword" placeholder='请再次输入密码(字母数字组合8-20位)' placeholder-style="color:#888888;"></input>
  22. </view>
  23. </view>
  24. <view class="save">
  25. <button class='save-btn' form-type="submit">立即找回</button>
  26. </view>
  27. <!-- <view class="agreement">
  28. <radio bindtap='radioClick' checked="{{radioCheck}}" color="#E9021D" />
  29. <view bindtap="agreementBtn">{{instructionBook}}<text>《企业授权协议》</text></view>
  30. </view> -->
  31. </form>
  32. </view>
  33. </view>
  34. </view>