mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-25 18:28:41 +00:00
refactor: add_contest page with bs5
This commit is contained in:
parent
327c61a251
commit
40921a5701
@ -7,20 +7,24 @@
|
|||||||
become403Page();
|
become403Page();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!isset($_COOKIE['bootstrap4'])) {
|
||||||
|
$REQUIRE_LIB['bootstrap5'] = '';
|
||||||
|
}
|
||||||
|
|
||||||
requirePHPLib('form');
|
requirePHPLib('form');
|
||||||
|
|
||||||
if (!isSuperUser($myUser)) {
|
if (!isSuperUser($myUser)) {
|
||||||
become403Page();
|
become403Page();
|
||||||
}
|
}
|
||||||
$time_form = new UOJForm('time');
|
$time_form = new UOJForm('time');
|
||||||
$time_form->addInput(
|
$time_form->addVInput(
|
||||||
'name', 'text', '比赛标题', 'New Contest',
|
'name', 'text', '比赛标题', 'New Contest',
|
||||||
function($str) {
|
function($str) {
|
||||||
return '';
|
return '';
|
||||||
},
|
},
|
||||||
null
|
null
|
||||||
);
|
);
|
||||||
$time_form->addInput(
|
$time_form->addVInput(
|
||||||
'start_time', 'text', '开始时间', date("Y-m-d H:i:s"),
|
'start_time', 'text', '开始时间', date("Y-m-d H:i:s"),
|
||||||
function($str, &$vdata) {
|
function($str, &$vdata) {
|
||||||
try {
|
try {
|
||||||
@ -32,7 +36,7 @@
|
|||||||
},
|
},
|
||||||
null
|
null
|
||||||
);
|
);
|
||||||
$time_form->addInput(
|
$time_form->addVInput(
|
||||||
'last_min', 'text', '时长(单位:分钟)', 180,
|
'last_min', 'text', '时长(单位:分钟)', 180,
|
||||||
function($str) {
|
function($str) {
|
||||||
return !validateUInt($str) ? '必须为一个整数' : '';
|
return !validateUInt($str) ? '必须为一个整数' : '';
|
||||||
@ -54,10 +58,40 @@
|
|||||||
$time_form->runAtServer();
|
$time_form->runAtServer();
|
||||||
?>
|
?>
|
||||||
<?php echoUOJPageHeader('添加比赛') ?>
|
<?php echoUOJPageHeader('添加比赛') ?>
|
||||||
<h1 class="page-header">添加比赛</h1>
|
|
||||||
<div class="tab-pane active" id="tab-time">
|
<?php if (isset($REQUIRE_LIB['bootstrap5'])): ?>
|
||||||
<?php
|
<div class="row">
|
||||||
$time_form->printHTML();
|
<div class="col-lg-9">
|
||||||
?>
|
<?php endif ?>
|
||||||
|
|
||||||
|
<?php if (isset($REQUIRE_LIB['bootstrap5'])): ?>
|
||||||
|
<div class="card card-default mb-2">
|
||||||
|
<div class="card-body">
|
||||||
|
<?php endif ?>
|
||||||
|
|
||||||
|
<h1 class="page-header
|
||||||
|
<?php if (isset($REQUIRE_LIB['bootstrap5'])): ?>
|
||||||
|
h2 card-title
|
||||||
|
<?php endif ?>
|
||||||
|
">添加比赛</h1>
|
||||||
|
|
||||||
|
<div class="w-full" style="max-width: 400px">
|
||||||
|
<?php $time_form->printHTML(); ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<?php if (isset($REQUIRE_LIB['bootstrap5'])): ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php endif ?>
|
||||||
|
|
||||||
|
<?php if (isset($REQUIRE_LIB['bootstrap5'])): ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<aside class="col mt-3 mt-lg-0">
|
||||||
|
<?php uojIncludeView('sidebar', array()) ?>
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<?php endif ?>
|
||||||
|
|
||||||
<?php echoUOJPageFooter() ?>
|
<?php echoUOJPageFooter() ?>
|
||||||
|
Loading…
Reference in New Issue
Block a user