22 lines
735 B
Text
22 lines
735 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>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>
|