Files
hustoj/web/swadmin/problem_copy.php
2024-10-10 12:56:56 +08:00

61 lines
1.4 KiB
PHP

<?php require_once ("admin-header.php");
if (!(isset($_SESSION[$OJ_NAME.'_'.'administrator']))){
echo "<a href='../loginpage.php'>Please Login First!</a>";
exit(1);
}
?>
<ol>
<li>
Copy from http://hustoj......
<form method=POST action=problem_add_page_hustoj.php>
<input name=url type=text size=100>
<input type=submit>
</form>
</li>
<li>
Copy from https://www.luogu.org/problemnew/show/
<form method=POST action=problem_add_page_luogu.php>
<input name=url type=text size=100>
<input type=submit>
</form>
</li>
<li>
Copy from https://loj.ac/problem/
<form method=POST action=problem_add_page_loj.php>
<input name=url type=text size=100>
<input type=submit>
</form>
</li>
<li>
Copy from http://acm.student.cs.uwaterloo.ca/~acm00
<form method=POST action=problem_add_page_waterloo.php>
<input name=url type=text size=100>
<input type=submit>
</form>
</li>
<li>
Copy from acm.pku.edu.cn
<form method=POST action=problem_add_page_pku.php>
<input name=url type=text size=100>
<input type=submit>
</form>
</li>
<li>
Copy from acm.hdu.edu.cn
<form method=POST action=problem_add_page_hdu.php>
<input name=url type=text size=100>
<input type=submit>
</form>
</li>
<li>
Copy from acm.zju.edu.cn
<form method=POST action=problem_add_page_zju.php>
<input name=url type=text size=100>
<input type=submit>
</form>
</li>
</ol>