[Solved]: remember login password [Solved]: remember login password
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

[Solved]: remember login password

Started by weggemans, February 12, 2009, 10:00:43 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

weggemans

Hello,

is it possible to disable the remember me box at login?

I want my visitors everytime they login type their password.

gr.

Hans

Ludo

OPEN
login.php

FIND (line 101)
<input name="remember_me" type="checkbox" class="checkbox" value="1" tabindex="3" />

CHANGE TO
<input name="remember_me" type="checkbox" class="checkbox" value="1" tabindex="3" disabled="disabled" />

SAVE AND CLOSE

Nibbler

That's not what the 'remember me' box does. Remembering passwords is a feature of the browser not of Coppermine.

weggemans

hello,

I deleted the line:

<input name="remember_me" type="checkbox" class="checkbox" value="1" tabindex="3" />

Joachim Müller


weggemans