Connect.wxml 947 B

1234567891011121314151617181920212223242526
  1. <!--pages/mine/wxml/Connect/Connect.wxml-->
  2. <view class='container'>
  3. <form bindsubmit="formSubmit" id="container" bindreset="formReset">
  4. <view class='count'>
  5. <view class='phone'>
  6. <text>手机号</text>
  7. <input name="phone" placeholder="请填写手机号" type='number' bindinput ="phone"></input>
  8. </view>
  9. <view class='phone'>
  10. <view class='verification'>
  11. <text> 验证码</text>
  12. </view>
  13. <input class='inp' placeholder="请填写验证码" bindinput='verification'></input>
  14. <button bindtap='obtain' style="background:{{setInformation?'#00db00':'#ccc'}}" disabled="{{!setInformation}}">
  15. {{setInformation?'获取验证码': countdown+'s后重新发送'}}
  16. </button>
  17. </view>
  18. <view class="tip">
  19. <text>如手机号未注册,验证后将自动注册。</text>
  20. </view>
  21. <button class='btn' bindtap='signin'>
  22. 登录
  23. </button>
  24. </view>
  25. </form>
  26. </view>