login.wxml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <view class="login-container">
  2. <view class="login-header">
  3. <view class="logo">
  4. <view class="logo-circle">
  5. <view class="logo-tree"></view>
  6. </view>
  7. </view>
  8. <view class="title">留家族族谱</view>
  9. <view class="subtitle">传承家族文化,记录血脉亲情</view>
  10. </view>
  11. <view class="login-content">
  12. <view class="agreement-tip">
  13. <text>登录即表示同意</text>
  14. <text class="link" bindtap="goToAgreement">《用户协议》</text>
  15. <text>和</text>
  16. <text class="link" bindtap="goToPrivacy">《隐私政策》</text>
  17. </view>
  18. <button
  19. class="login-btn"
  20. open-type="getRealtimePhoneNumber"
  21. bindgetrealtimephonenumber="onGetPhoneNumber"
  22. >
  23. <view class="btn-content">
  24. <view class="btn-icon">
  25. <view class="phone-icon"></view>
  26. </view>
  27. <text class="btn-text">微信一键登录</text>
  28. </view>
  29. </button>
  30. </view>
  31. <view class="login-footer">
  32. <text class="footer-text">© 2025 留家族族谱管理系统</text>
  33. </view>
  34. </view>