| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <style type="text/css">
- @media (max-width: 375px) {
- .edit-form tr td input {
- width: 100%;
- }
- .edit-form tr th:first-child, .edit-form tr td:first-child {
- width: 20%;
- }
- .edit-form tr th:nth-last-of-type(-n+2), .edit-form tr td:nth-last-of-type(-n+2) {
- display: none;
- }
- }
- .edit-form table > tbody > tr td a.btn-delcfg {
- visibility: hidden;
- }
- .edit-form table > tbody > tr:hover td a.btn-delcfg {
- visibility: visible;
- }
- .qrcode img {
- width: 120px;
- }
- .name {
- text-align: center;
- }
- </style>
- <div class="panel panel-default panel-intro">
- <div class="panel-heading">
- <div class="title">扫码绑定谷歌验证码:</div>
- <div class="qrcode">
- <img src="{$qrcode}" alt="">
- </div>
- <div class="name">{$admin.username}</div>
- </div>
- </div>
|