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/install-success.html

21 lines
459 B
HTML
Raw Permalink Normal View History

<!DOCTYPE>
<html>
<head>
<title>安装成功</title>
2017-12-08 22:37:18 +08:00
{{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>