27 lines
558 B
HTML
27 lines
558 B
HTML
<!DOCTYPE>
|
|
<html>
|
|
<head>
|
|
<title>BookSystem 图书借阅成功</title>
|
|
{{Header}}
|
|
{{navcss}}
|
|
</head>
|
|
|
|
<body>
|
|
{{nav}}
|
|
<div>
|
|
<p>借阅成功!请及时到线下图书馆取走书籍</p>
|
|
<button id="b_confirm">返回主页</button>
|
|
</div>
|
|
|
|
<script>
|
|
$("button").button();
|
|
|
|
mustLogin();
|
|
|
|
$("#b_confirm").click(function(){
|
|
location.href="mainpage.html";
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html> |