diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2019-01-12 14:53:41 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2019-01-12 14:53:41 +0100 |
commit | 393709dcf84776c760146722560816172167fe98 (patch) | |
tree | 4b5c1f24beae72a0ed9e6535f725031b46be165d /app/view/templates/user.php | |
parent | 19458f7fc46c5a275f9a04b9e80fdf8175c85c6e (diff) | |
download | wcms-393709dcf84776c760146722560816172167fe98.tar.gz wcms-393709dcf84776c760146722560816172167fe98.zip |
visit counter
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 957f17f..d97cc31 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> @@ -88,6 +98,8 @@ foreach ($userlist as $user ) { </table> + + </main> </body> |