index.html 939 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. .qrcode img {
  20. width: 120px;
  21. }
  22. .name {
  23. text-align: center;
  24. }
  25. </style>
  26. <div class="panel panel-default panel-intro">
  27. <div class="panel-heading">
  28. <div class="title">扫码绑定谷歌验证码:</div>
  29. <div class="qrcode">
  30. <img src="{$qrcode}" alt="">
  31. </div>
  32. <div class="name">{$admin.username}</div>
  33. </div>
  34. </div>