diff options
Diffstat (limited to '')
-rw-r--r-- | template/default/admin/configuration.tpl | 15 | ||||
-rw-r--r-- | template/default/category.tpl | 1 | ||||
-rw-r--r-- | template/default/identification.tpl | 8 |
3 files changed, 14 insertions, 10 deletions
diff --git a/template/default/admin/configuration.tpl b/template/default/admin/configuration.tpl index da0174ab7..a6d00aea7 100644 --- a/template/default/admin/configuration.tpl +++ b/template/default/admin/configuration.tpl @@ -149,17 +149,14 @@ <td colspan="2"> </td> </tr> <tr> - <td width="70%"><strong>{session.L_CONF_COOKIE} :</strong><br /><span class="small">{session.L_CONF_COOKIE_INFO}</span></td> - <td class="row1"><input type="radio" class="radio" name="authorize_cookies" value="true" {session.COOKIE_YES} />{L_YES} - <input type="radio" class="radio" name="authorize_cookies" value="false" {session.COOKIE_NO} />{L_NO}</td> - </tr> - <tr> - <td><strong>{session.L_SESSION_LENGTH} :</strong><br /><span class="small">{session.L_SESSION_LENGTH_INFO}</span></td> - <td class="row1"><input type="text" size="4" maxlength="6" name="session_time" value="{session.SESSION_LENGTH}" /></td> + <td width="70%"><strong>{session.L_CONF_AUTH_METHOD} :</strong><br /><span class="small">{session.L_CONF_AUTH_METHOD_INFO}</span></td> + <td class="row1"><input type="radio" class="radio" name="auth_method" value="URI" {session.AUTH_METHOD_URI} />{L_URI} + <input type="radio" class="radio" name="auth_method" value="cookie" {session.AUTH_METHOD_COOKIE} />{L_COOKIE}</td> </tr> <tr> - <td><strong>{session.L_SESSION_ID_SIZE} :</strong><br /><span class="small">{session.L_SESSION_ID_SIZE_INFO}</span></td> - <td class="row1"><input type="text" size="2" maxlength="3" name="session_id_size" value="{session.SESSION_ID_SIZE}" /></td> + <td width="70%"><strong>{session.L_CONF_AUTHORIZE_REMEMBERING} :</strong><br /><span class="small">{session.L_CONF_AUTHORIZE_REMEMBERING_INFO}</span></td> + <td class="row1"><input type="radio" class="radio" name="authorize_remembering" value="true" {session.AUTHORIZE_REMEMBERING_YES} />{L_YES} + <input type="radio" class="radio" name="authorize_remembering" value="false" {session.AUTHORIZE_REMEMBERING_NO} />{L_NO}</td> </tr> <!-- END session --> <!-- BEGIN metadata --> diff --git a/template/default/category.tpl b/template/default/category.tpl index 7b4353e2c..9e8d9a7fc 100644 --- a/template/default/category.tpl +++ b/template/default/category.tpl @@ -41,6 +41,7 @@ <input type="text" name="username" size="15" value="" /><br /> {L_PASSWORD}<br /> <input type="password" name="password" size="15"><br /> + <input type="checkbox" name="remember_me" value="1" /> {L_REMEMBER_ME}<br /> <input type="submit" name="login" value="{L_SUBMIT}" class="bouton" /> </form> <!-- END login --> diff --git a/template/default/identification.tpl b/template/default/identification.tpl index eca0a9b89..412c28ece 100644 --- a/template/default/identification.tpl +++ b/template/default/identification.tpl @@ -30,6 +30,12 @@ <input class="login" type="password" name="password" size="25" maxlength="25" /> </td> </tr> + <tr> + <td align="right"><span class="gentbl">{L_REMEMBER_ME}:</span></td> + <td> + <input type="checkbox" name="remember_me" value="1" /> + </td> + </tr> <tr align="center"> <td colspan="2"><input type="submit" name="login" value="{L_LOGIN}" class="bouton" /></td> </tr> @@ -47,4 +53,4 @@ </td> </tr> </table> -</div>
\ No newline at end of file +</div> |