You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title></title>
|
|
|
|
|
<link href="./component/layui/css/layui.css" rel="stylesheet">
|
|
|
|
|
<style>
|
|
|
|
|
.bottom {
|
|
|
|
|
width: 100%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0px;
|
|
|
|
|
left: 0px;
|
|
|
|
|
height: 50px;
|
|
|
|
|
line-height: 50px;
|
|
|
|
|
background-color: #F8F8F8;
|
|
|
|
|
border-top: 1px solid #eee;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lr {
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<div style="text-align: center;margin-top: 30px;">
|
|
|
|
|
<h2>承诺书</h2>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="lr" style="margin-top: 30px;">
|
|
|
|
|
本人自愿报名参加2023年下半年吉林省普通高中学业水平合格性考试,现郑重承诺:</div>
|
|
|
|
|
<div class="lr">
|
|
|
|
|
一、本人已认真阅读2023年下半年吉林省普通高中学业水平合格性考试(下称合格性考试)的有关规定,清楚了解在本次考试中“组织作弊”、“为他人组织作弊提供器材或帮助”、“为实施考试作弊向他人提供考试试题或答案”、“代替他人考试或让他人代替自己考试”是《中华人民共和国刑法》所规定的违法行为,愿意遵守国家和广东省制定的有关考试的法律、规定和守则,承诺按规定的程序和要求参加考试,如有违反,将接受《刑法》《教育法》和《国家教育考试违规处理办法》等法律法规的处理。
|
|
|
|
|
</div>
|
|
|
|
|
<div class="lr">
|
|
|
|
|
二、本人坚决遵守合格性考试报名有关规定,按要求和程序办理报名手续,不弄虚作假,不伪造和使用虚假证明材料(含假证明、假学籍材料、假证书等)。如有违反,自愿接受相关规定处理,并承担由此造成的一切后果。
|
|
|
|
|
</div>
|
|
|
|
|
<div class="lr">
|
|
|
|
|
三、本人自觉服从考场工作人员和监考员的管理,自觉接受监考员使用身份识别设备、金属探测仪等考场管理设施进行考生身份核验和违禁物品检查,自觉维护考试公平,遵守考试纪律,做到诚信考试、守纪考试、文明考试。
|
|
|
|
|
</div>
|
|
|
|
|
<div class="lr">
|
|
|
|
|
四、本人已认真核对报名个人信息,并确认本人信息是真实准确的,如因个人信息错误、失真造成不良后果,责任由本人承担。
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="bottom">
|
|
|
|
|
<div class="button-container" style="text-align: center;">
|
|
|
|
|
<button type="submit" class="layui-btn layui-bg-blue layui-btn-sm layui-btn-disabled" id="confirm" disabled>
|
|
|
|
|
<i class="layui-icon layui-icon-form"></i>
|
|
|
|
|
我已仔细阅读,并承诺遵守相关规定<span id="time">(<span id="demo">15</span>s)</span>
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script src="./js/jquery-2.2.4.min.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
$(function () {
|
|
|
|
|
|
|
|
|
|
function startTimer() {
|
|
|
|
|
var timeLeft = 15;
|
|
|
|
|
var timer = setInterval(function () {
|
|
|
|
|
timeLeft--;
|
|
|
|
|
$("#demo").html(timeLeft);
|
|
|
|
|
if (timeLeft <= 0) {
|
|
|
|
|
clearInterval(timer);
|
|
|
|
|
$("#confirm").removeClass("layui-btn-disabled");
|
|
|
|
|
$("#confirm").removeAttr("disabled");
|
|
|
|
|
$("#time").html("");
|
|
|
|
|
}
|
|
|
|
|
}, 1000);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
startTimer();
|
|
|
|
|
|
|
|
|
|
$("#confirm").click(function () {
|
|
|
|
|
parent.layer.close(parent.layer.getFrameIndex(window.name));
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
<script>
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
</html>
|