index.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <style type="text/css">
  2. @media (max-width: 375px) {
  3. .edit-form tr td input {
  4. width: 100%;
  5. }
  6. .edit-form tr th:first-child, .edit-form tr td:first-child {
  7. width: 20%;
  8. }
  9. .edit-form tr th:nth-last-of-type(-n+2), .edit-form tr td:nth-last-of-type(-n+2) {
  10. display: none;
  11. }
  12. }
  13. .edit-form table > tbody > tr td a.btn-delcfg {
  14. visibility: hidden;
  15. }
  16. .edit-form table > tbody > tr:hover td a.btn-delcfg {
  17. visibility: visible;
  18. }
  19. .panel {
  20. min-height: 360px;
  21. }
  22. .panel-heading {
  23. background: #fff !important;
  24. border: none !important;
  25. }
  26. .title {
  27. padding: 10px 0;
  28. }
  29. .qrcode img {
  30. width: 120px;
  31. }
  32. .name {
  33. width: 120px;
  34. padding: 10px 0;
  35. text-align: center;
  36. }
  37. .url {
  38. padding: 10px 0;
  39. }
  40. </style>
  41. <div class="panel panel-default panel-intro">
  42. <div class="panel-heading">
  43. <div class="title">下载验证器并扫码绑定谷歌验证码:</div>
  44. <div class="qrcode">
  45. <img src="{$qrcode}" alt="">
  46. </div>
  47. <div class="name"><span>账号:{$admin.username}</span></div>
  48. <div class="url">验证器安卓下载地址:<a href="https://google-authenticator.en.softonic.com/android" target="_blank">:立即下载</a></div>
  49. <div class="url">验证器IOS下载地址<a href="https://apps.apple.com/cn/app/google-authenticator/id388497605" target="_blank">:立即下载</a></div>
  50. </div>
  51. </div>