1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
JEE_Project/build/web/WEB-INF/classes/jsp/header.jsp

25 lines
942 B
Text

<%--
Document : heqder
Created on : 26 juin 2022, 18:37:00
Author : flifloo
--%>
<header>
<nav style="display: flex; flex-direction: row; justify-content: space-between">
<div style="display: flex; flex-direction: row">
<p>Welcome ${user.login}</p>
<form name="form" method="POST">
<input type="submit" formaction="menu.htm" value="Home" />
</form>
</div>
<div style="display: flex; flex-direction: row; justify-content: flex-end">
<form name="form" method="POST">
<input type="submit" formaction="logout.htm" value="Log out" />
<input type="text" name="query" />
<input hidden type="text" name="type" value="customer" />
<input type="submit" formaction="find.htm" value="Search user" />
</form>
</div>
</nav>
</header>