about.wxml 1.9 KB

12345678910111213141516171819202122232425262728293031323334
  1. <scroll-view scroll-y class="scrollPage padding-tabbar">
  2. <view class="UCenter-bg">
  3. <image src="/images/logo.png"></image>
  4. <view class="text-xl">密码本
  5. <text class="text-df">v1.0</text>
  6. </view>
  7. <view class="margin-top-sm">
  8. <text>By:朱金辉</text>
  9. </view>
  10. <view class="align-center margin-top">
  11. <button class="cu-btn bg-red round justify-middle" bindtap='showQrcode'>赞赏支持</button>
  12. </view>
  13. <view class="align-center margin-top">
  14. <button class="cu-btn bg-yellow round justify-middle" bindtap='switchToLocal'>{{switchToLocalText}}</button>
  15. </view>
  16. <view class="padding flex flex-wrap justify-between align-center margin-top">
  17. <button class="cu-btn bg-red round justify-middle" bindtap='clearData'>清空数据重新登录</button>
  18. </view>
  19. </view>
  20. <view class="cu-tabbar-height" style="opacity:{{0.85}}">
  21. <view class='margin-xl bg-white padding-xl radius shadow-lg'>
  22. <view class='text-center margin-bottom text-lg text-grey'>关于密码本</view>
  23. <view class='text-content'>
  24. <view>Hi!大家好~欢迎使用密码本!</view>
  25. <view class='margin-top-sm'> 该项目的背景是由于不久前邮箱密码被盗,被小偷将我的一个短域名转走,从此认识到密码的重要性,由于平时的密码设置为了方便记忆会将密码设置得短,密码强度不高,很容易被破解,设置过于复杂又不方便记忆,所以开发密码本来管理自己的密码,您可以通过它生成复杂的随机密码,也可以保存您自定义的密码。</view>
  26. <view class='margin-top-sm'>密码本的密码都是通过OpenSSL 256 位非对称加密,所以请您生成公私钥后,一定要保存好自己的私钥,防止私钥丢失导致密码泄露,如果您忘记了私钥,密码将会全部丢失。</view>
  27. </view>
  28. </view>
  29. </view>
  30. </scroll-view>