index.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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;
  24. border: none;
  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. </style>
  38. <div class="panel panel-default panel-intro">
  39. <div class="panel-heading">
  40. <div class="title">扫码绑定谷歌验证码:</div>
  41. <div class="qrcode">
  42. <img src="{$qrcode}" alt="">
  43. </div>
  44. <div class="name"><span>{$admin.username}</span></div>
  45. </div>
  46. </div>