forked from marg-o/brigate
37 lines
870 B
Plaintext
37 lines
870 B
Plaintext
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
|
pageEncoding="UTF-8"%>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Nav</title>
|
|
<style>
|
|
.nav {
|
|
background-color: #666666;
|
|
}
|
|
|
|
.nav-link {
|
|
color: white
|
|
}
|
|
|
|
.nav-link:hover {
|
|
color: #f1f1f1;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<ul class="nav">
|
|
<li class="nav-item"><a class="nav-link active"
|
|
href="cerca-aggiungi.jsp"><b>HOME</b></a></li>
|
|
<li class="nav-item"><a class="nav-link"
|
|
href="elenco-contatti.jsp">Visualizza contatti</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="elenco-ordini.jsp">Visualizza
|
|
ordini</a></li>
|
|
</ul>
|
|
<form action="utente-servlet" method="post" class="logout-form"
|
|
style="position: fixed; top: 2px; right: 5px">
|
|
<input type="hidden" name="azione" value="logout"> <input
|
|
type="submit" value="logout" class="nav-item">
|
|
</form>
|
|
</body>
|
|
</html> |