login.wxml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <view>
  2. <image src="/images/bg_main_new.jpg" style="width: 100%; height: 400rpx;"> </image>
  3. <view class="home">
  4. 民政信息采集系统
  5. </view>
  6. <form bindsubmit="formSubmit">
  7. <view class="box">
  8. <view class="name">
  9. <image src="/images/user.png" style="width: 40rpx; height: 40rpx;"> </image>
  10. <input name='name' class="weui-input" placeholder="请输入账号" />
  11. </view>
  12. <view class="name" style=" margin-top: 50rpx;">
  13. <image src="/images/pwd.png" style="width: 40rpx; height: 40rpx;"> </image>
  14. <input name='pwd' class="weui-input" password='{{passwordType1}}' placeholder="请输入密码" />
  15. <image src='{{defaultType1? "/images/eye_close.png": "/images/eye_open.png"}}' class='eye-image' bindtap='eyeStatus1'></image>
  16. </view>
  17. <view style="display:flex;">
  18. <checkbox-group bindchange="change">
  19. <label class="checkbox">
  20. <checkbox value="cb" />
  21. </label>
  22. </checkbox-group>
  23. <view style="font-size:26rpx;margin-top:15rpx">已阅读并同意<text style="color:#1989FA" bindtap="goXy">《用户服务及授权协议》</text></view>
  24. </view>
  25. <view class="register">
  26. <button formType="submit">登录并绑定微信号</button>
  27. </view>
  28. <view class="register" style=" margin-top: 20rpx;">
  29. <button bindtap="goHome">返回首页</button>
  30. </view>
  31. </view>
  32. </form>
  33. </view>
  34. <van-notify id="van-notify" />