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

26 lines
802 B
HTML

<!DOCTYPE>
<html>
<head>
<title>安装成功</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="jquery-ui.css">
<link rel="stylesheet" href="jquery-ui.structure.css">
<link rel="stylesheet" href="jquery-ui.theme.css">
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery-ui.js"></script>
</head>
<body>
<p>你已经安装好了BookSystem.</p>
<p>现在开始使用吧!</p>
<button id="submit">前往主页</button>
<script>
$("button").button();
$("#submit").click(function(){
location.href="login.html";
});
</script>
</body>
</html>