This repository has been archived on 2021-11-25. You can view files and clone it, but cannot push or open issues or pull requests.
DBHomework/web/booksys/borrow-success.html

27 lines
558 B
HTML
Raw Permalink Normal View History

2017-12-08 22:37:18 +08:00
<!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>