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/jsp/header.jsp

22 lines
735 B
Text
Raw Normal View History

2022-06-27 21:14:35 +02:00
<%--
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>Bienvenue ${user.login}</p>
</div>
<div style="display: flex; flex-direction: row; justify-content: flex-end">
<form name="form" method="POST">
<input type="submit" formaction="logout.htm" value="Se d<>connecter" />
<input type="text" name="search" />
<input type="submit" formaction="search.htm" value="Chercher" />
</form>
</div>
</nav>
</header>