1234567891011121314151617181920212223242526272829303132333435 |
- <view>
- <image src="/images/bg_main_new.jpg" style="width: 100%; height: 400rpx;"> </image>
- <view class="home">
- 民政信息采集系统
- </view>
- <form bindsubmit="formSubmit">
- <view class="box">
- <view class="name">
- <image src="/images/user.png" style="width: 40rpx; height: 40rpx;"> </image>
- <input name='name' class="weui-input" placeholder="请输入账号" />
- </view>
- <view class="name" style=" margin-top: 50rpx;">
- <image src="/images/pwd.png" style="width: 40rpx; height: 40rpx;"> </image>
- <input name='pwd' class="weui-input" password='{{passwordType1}}' placeholder="请输入密码" />
- <image src='{{defaultType1? "/images/eye_close.png": "/images/eye_open.png"}}' class='eye-image' bindtap='eyeStatus1'></image>
- </view>
- <view style="display:flex;">
- <checkbox-group bindchange="change">
- <label class="checkbox">
- <checkbox value="cb" />
- </label>
- </checkbox-group>
- <view style="font-size:26rpx;margin-top:15rpx">已阅读并同意<text style="color:#1989FA" bindtap="goXy">《用户服务及授权协议》</text></view>
- </view>
- <view class="register">
- <button formType="submit">登录并绑定微信号</button>
- </view>
- <view class="register" style=" margin-top: 20rpx;">
- <button bindtap="goHome">返回首页</button>
- </view>
- </view>
- </form>
- </view>
- <van-notify id="van-notify" />
|