diff options
Diffstat (limited to 'app/view/templates/user.php')
-rw-r--r-- | app/view/templates/user.php | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/app/view/templates/user.php b/app/view/templates/user.php index 2034d30..451d3ce 100644 --- a/app/view/templates/user.php +++ b/app/view/templates/user.php @@ -11,12 +11,22 @@ <main class="user"> -<div> <h1>User : <?= $user->id() ?></h1> -</div> +<form action="" method="post"> + +<h2>Connexion Options</h2> + +<input type="number" name="cookie" id="cookie"> +<label for="cookie">Cookie conservation time <i>(In days)</i></label> + +<input type="submit" value="submit"> + +</form> + +<h1>Admin panel</h1> <table> <tr> @@ -98,6 +108,8 @@ foreach ($userlist as $user ) { </table> + + </main> </body> |