accountLogin.wxml 839 B

12345678910111213141516171819
  1. <!--pages/authorizedLogin/authorizedLogin.wxml-->
  2. <view class="con">
  3. <image src='http://img-test.gz-yami.com/mini/logo.jpg'></image>
  4. <view class="login-form">
  5. <view class="account">
  6. <text class="input-item">账号</text>
  7. <input type="text" bindinput="getInputVal" data-type="account" placeholder-class="inp-palcehoder" placeholder="请输入手机号/用户名"></input>
  8. </view>
  9. <view class="account">
  10. <text class="input-item">密码</text>
  11. <input type="password" bindinput="getInputVal" data-type="password" placeholder-class="inp-palcehoder" placeholder="请输入密码"></input>
  12. </view>
  13. <view class="to-register" bindtap="toRegitser">还没有账号?<text>去注册></text></view>
  14. </view>
  15. <view>
  16. <button class="authorized-btn" bindtap="login">登录</button>
  17. </view>
  18. </view>