Home.jsp 438 Bytes
Newer Older
Benyamin De Costa committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21

<html>
	<head>
		<title>Perpustakaan</title>
	</head>
	<body>
		<header>
			<h1>Perpustakaan</h1>
		</header>
		<nav>
				<a href="/PerpustakaanKu/Home.jsp">Home</a>
				<a href="/PerpustakaanKu/DaftarBuku.jsp">Daftar Buku</a>
				<% if(session.getAttribute("username")!=null) {%>
				<a href="/PerpustakaanKu/LogOut.do">LogOut</a>
				<%}else {%>
				<a href="/PerpustakaanKu/Login.jsp">Login</a>
				<%} %>
		</nav>
		
	</body>
</html>