tishi.html 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <style>
  2. .profile-avatar-container {
  3. position: relative;
  4. width: 100px;
  5. margin: 0 auto;
  6. }
  7. .profile-avatar-container .profile-user-img {
  8. width: 100px;
  9. height: 100px;
  10. }
  11. .profile-avatar-container .profile-avatar-text {
  12. display: none;
  13. }
  14. .profile-avatar-container:hover .profile-avatar-text {
  15. display: block;
  16. position: absolute;
  17. height: 100px;
  18. width: 100px;
  19. background: #444;
  20. opacity: .6;
  21. color: #fff;
  22. top: 0;
  23. left: 0;
  24. line-height: 100px;
  25. text-align: center;
  26. }
  27. .profile-avatar-container button {
  28. position: absolute;
  29. top: 0;
  30. left: 0;
  31. width: 100px;
  32. height: 100px;
  33. opacity: 0;
  34. }
  35. .panel-heading{font-size: 18px}
  36. </style>
  37. <div class="row animated fadeInRight">
  38. <div class="col-md-12">
  39. <div class="box box-primary">
  40. <div class="panel-body">
  41. <form id="update-form" role="form" data-toggle="validator" method="POST" action="">
  42. {:token()}
  43. <div class="panel-heading">
  44. {:__('个人信息')}
  45. </div>
  46. <div class="box-body box-profile">
  47. <div class="row">
  48. <div class="form-group col-sm-6">
  49. <label class="control-label">{:__('考试学员')}:</label>
  50. <input type="text" class="form-control" value="{$admin.nickname|htmlentities}" readonly/>
  51. </div>
  52. <div class="form-group col-sm-6">
  53. <label class="control-label">{:__('学员座号')}:</label>
  54. <input type="text" class="form-control" value="01" readonly/>
  55. </div>
  56. </div>
  57. </div>
  58. <div class="panel-heading">
  59. {:__('注意事项')}
  60. </div>
  61. <div class="box-body box-profile">
  62. <div style="color: rgb(192, 74, 84)">1.遵守考场纪律‌</div>
  63. <div style="color: rgb(192, 74, 84)">2.合理安排时间</div>
  64. <div style="color: rgb(192, 74, 84)">3.超时10分钟不交卷自动结束</div>
  65. </div>
  66. <div class="form-group" style="text-align: center">
  67. <button type="button" class="btn btn-warning">{:__('暂无开启的考试,请耐心等待...')}</button>
  68. </div>
  69. </form>
  70. </div>
  71. </div>
  72. </div>
  73. </div>