21 lines
459 B
HTML
21 lines
459 B
HTML
<!DOCTYPE>
|
|
<html>
|
|
<head>
|
|
<title>安装成功</title>
|
|
{{Header}}
|
|
</head>
|
|
|
|
<body>
|
|
<p>你已经安装好了BookSystem.</p>
|
|
<p>现在开始使用吧!</p>
|
|
<button id="submit">前往主页</button>
|
|
|
|
<script>
|
|
$("button").button();
|
|
|
|
$("#submit").click(function(){
|
|
location.href="login.html";
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |