diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2019-10-16 02:06:46 +0200 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2019-10-16 02:06:46 +0200 |
commit | ba126f5f7175bcefbdb16c44cf74203f0756bb1b (patch) | |
tree | 599223b5751e433cd504943f1b0d586c735744ef /app/view/templates/connect.php | |
parent | cab6c37b88830a0b3b6dcbdcb40c240b334c3b8f (diff) | |
download | wcms-ba126f5f7175bcefbdb16c44cf74203f0756bb1b.tar.gz wcms-ba126f5f7175bcefbdb16c44cf74203f0756bb1b.zip |
automatic pass ask when visitor try to edit or add
Diffstat (limited to 'app/view/templates/connect.php')
-rw-r--r-- | app/view/templates/connect.php | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/app/view/templates/connect.php b/app/view/templates/connect.php index 608a557..82c01ec 100644 --- a/app/view/templates/connect.php +++ b/app/view/templates/connect.php @@ -11,16 +11,14 @@ <?php if($user->isvisitor()) { ?> -<?= $route === 'artedit' ? '<p>Your edits have been temporary saved. You need to connect and update to store it completly</p>' : '' ?> - <form action="<?= $this->url('log') ?>" method="post"> <input type="hidden" name="route" value="<?= $route ?>"> <?php -if(in_array($route, ['artedit', 'artread', 'artread/'])) { +if(in_array($route, ['artedit', 'artread', 'artread/', 'artadd'])) { echo '<input type="hidden" name="id" value="'. $id .'">'; } ?> -<input type="password" name="pass" id="loginpass" placeholder="password"> +<input type="password" name="pass" id="loginpass" placeholder="password" autofocus> <input name="log" type="submit" value="login"> </form> @@ -35,4 +33,10 @@ if(in_array($route, ['artedit', 'artread', 'artread/'])) { <?php } ?> +<?php +if(in_array($route, ['artedit', 'artread', 'artread/', 'artadd'])) { + echo '<p><a href="' . $this->uart('artread/', $id) . '">back to page read view</a></p>'; +} +?> + <?php $this->stop() ?>
\ No newline at end of file |