login.wxml 983 B

123456789101112131415161718192021222324252627
  1. <view class="container">
  2. <view class="wrapper">
  3. <!-- <view class="left-top-sign">LOGIN</view> -->
  4. <view class="welcome">
  5. 欢迎回来!
  6. </view>
  7. <view class="input-content">
  8. <view class="input-item">
  9. <text class="tit">账号</text>
  10. <input type="text" placeholder="请输入您的账号" data-type="userName" bindinput="handleInput"/>
  11. </view>
  12. <view class="input-item">
  13. <text class="tit">密码</text>
  14. <input type="password" placeholder="请输入密码" data-type="password" bindinput="handleInput"/>
  15. </view>
  16. </view>
  17. <button class="confirm-btn" bindtap="login" >登录</button>
  18. <view class="forget-section">
  19. 忘记密码?
  20. </view>
  21. </view>
  22. <view class="register-section">
  23. 还没有账号?
  24. <text bindtap="toLoginIn">马上注册</text>
  25. </view>
  26. </view>