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/mainpage.html

25 lines
632 B
HTML
Raw Normal View History

<!DOCTYPE>
<html>
<head>
<title>BookSystem 主页</title>
2017-12-08 22:37:18 +08:00
{{Header}}
{{navcss}}
</head>
<body>
2017-12-08 22:37:18 +08:00
{{nav}}
<div>
2017-12-08 22:37:18 +08:00
BookSystem Search
<input type="text" placeholder="What's your favorite book?" id="search_box_main"/>
<p><img src="img/search_icon.png" alt="Search It!" id="search_box_icon"/></p>
</div>
2017-12-08 22:37:18 +08:00
<script>
mustLogin();
$("#search_box_icon").click(function(){
location.href="search.html?name="+$("#search_box_main").val();
});
</script>
</body>
</html>