123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <style>
- .profile-avatar-container {
- position: relative;
- width: 100px;
- margin: 0 auto;
- }
- .profile-avatar-container .profile-user-img {
- width: 100px;
- height: 100px;
- }
- .profile-avatar-container .profile-avatar-text {
- display: none;
- }
- .profile-avatar-container:hover .profile-avatar-text {
- display: block;
- position: absolute;
- height: 100px;
- width: 100px;
- background: #444;
- opacity: .6;
- color: #fff;
- top: 0;
- left: 0;
- line-height: 100px;
- text-align: center;
- }
- .profile-avatar-container button {
- position: absolute;
- top: 0;
- left: 0;
- width: 100px;
- height: 100px;
- opacity: 0;
- }
- .panel-heading{font-size: 18px}
- </style>
- <div class="row animated fadeInRight">
- <div class="col-md-12">
- <div class="box box-primary">
- <div class="panel-body">
- <form id="update-form" role="form" data-toggle="validator" method="POST" action="">
- {:token()}
- <div class="panel-heading">
- {:__('基本信息')}
- </div>
- <div class="box-body box-profile">
- <div class="row">
- <div class="form-group col-sm-6">
- <label class="control-label">{:__('当前模式')}:</label>
- <input type="text" class="form-control" value="考试" readonly/>
- </div>
- <div class="form-group col-sm-6">
- <label class="control-label">{:__('模拟器类型')}:</label>
- <input type="text" class="form-control" value="{$row.sim_type_text|htmlentities}" readonly/>
- </div>
- <div class="form-group col-sm-6">
- <label class="control-label">{:__('模拟器状态')}:</label>
- <input type="text" class="form-control" value="{$info.sim_text|htmlentities}" readonly/>
- </div>
- <div class="form-group col-sm-6">
- <label class="control-label">{:__('考试学员')}:</label>
- <input type="text" class="form-control" value="{$admin.nickname|htmlentities}" readonly/>
- </div>
- <div class="form-group col-sm-6">
- <label class="control-label">{:__('学员座号')}:</label>
- <input type="text" class="form-control" value="{$info.seat_id|htmlentities}" readonly/>
- </div>
- </div>
- </div>
- <div class="panel-heading">
- {:__('注意事项')}
- </div>
- <div class="box-body box-profile">
- <div style="color: rgb(192, 74, 84)">1.遵守考场纪律</div>
- <div style="color: rgb(192, 74, 84)">2.合理安排时间</div>
- <div style="color: rgb(192, 74, 84)">3.超时10分钟不交卷自动结束</div>
- </div>
- <div class="form-group" style="text-align: center">
- <button type="button" class="btn btn-info btn-startexam">{:__('开始考试')}</button>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
|