index.wxml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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>欢迎来到吉企银通</text>
  7. </text>
  8. <view class="form">
  9. <form bindsubmit="formSubmit" bindreset="formReset">
  10. <view class='input-content'>
  11. <view class='input-col'>
  12. <input type='number' value="{{phone}}" name="phone" placeholder='请输入您本人的手机号码' maxlength="11" placeholder-style="color:#888888;"></input>
  13. </view>
  14. <view class='input-col' style='border-bottom:none'>
  15. <input type='text' value="{{password}}" password name="password" placeholder='请输入密码' placeholder-style="color:#888888;"></input>
  16. </view>
  17. </view>
  18. <view class="unBtnPass">
  19. <button bindtap="unBtnPass">忘记密码?</button>
  20. </view>
  21. <view class="save" >
  22. <button form-type="submit" hover-class="green">登录</button>
  23. <!-- <button class='save-btn' bindtap="fanhui" >返回</button> -->
  24. </view>
  25. <view class="register">
  26. <button bindtap="registerBtn">立即注册</button>
  27. </view>
  28. </form>
  29. </view>
  30. </view>
  31. </view>