"Log me in automatically" - checked by default

A perfect place for code snippets to small to be a MOD or a library.
Or for examples on how to use our libraries.
Post Reply
Elglobo
Past Contributor
Past Contributor
Posts: 119
Joined: 15 Jul 2008, 19:42

"Log me in automatically" - checked by default

Post by Elglobo »

This post was originally posted by Kenny at 6 String MODs.

Tired of clicking the box? here's the fix so you don't have to.

Prosilver based styles

OPEN: index_body.html
FIND:

Code: Select all

| <label for="autologin">{L_LOG_ME_IN} <input type="checkbox" name="autologin" id="autologin" /></label>

REPLACE WITH:

Code: Select all

| <label for="autologin">{L_LOG_ME_IN} <input type="checkbox" name="autologin" id="autologin" checked="checked" /></label>

OPEN: login_body.html
FIND:

Code: Select all

<!-- IF S_AUTOLOGIN_ENABLED --><dd><label for="autologin"><input type="checkbox" name="autologin" id="autologin" tabindex="4" /> {L_LOG_ME_IN}</label></dd><!-- ENDIF -->

REPLACE WITH:

Code: Select all

<!-- IF S_AUTOLOGIN_ENABLED --><dd><label for="autologin"><input type="checkbox" name="autologin" id="autologin" tabindex="4" checked="checked" /> {L_LOG_ME_IN}</label></dd><!-- ENDIF -->
Last edited by Elglobo on 10 Nov 2010, 15:48, edited 1 time in total.
Elglobo
Past Contributor
Past Contributor
Posts: 119
Joined: 15 Jul 2008, 19:42

Re: "Log me in automatically" - checked by default

Post by Elglobo »

This post was originally posted by Kenny at 6 String MODs, I have made some minor adjustments and we in the team will try to fix any bugs in the included codes.

subSilver2 based styles

OPEN: index_body.html
FIND:

Code: Select all

<!-- IF S_AUTOLOGIN_ENABLED --> <span class="gensmall">{L_LOG_ME_IN}</span> <input type="checkbox" class="radio" name="autologin" /><!-- ENDIF -->

REPLACE WITH:

Code: Select all

<!-- IF S_AUTOLOGIN_ENABLED --> <span class="gensmall">{L_LOG_ME_IN}</span> <input type="checkbox" class="radio" name="autologin" checked="checked" /><!-- ENDIF -->

OPEN: login_body.html
FIND:

Code: Select all

<td><input type="checkbox" class="radio" name="autologin" tabindex="3" /> <span class="gensmall">{L_LOG_ME_IN}</span></td>

REPLACE WITH:

Code: Select all

<td><input type="checkbox" class="radio" name="autologin" checked="checked" tabindex="3" /> <span class="gensmall">{L_LOG_ME_IN}</span></td>
phpBB-Services.com: L'hébergement et l'assistance de votre forum phpBB en toute tranquillité.

Myff.fr - My First forum, créer votre forum phpBB3 facilement !
Post Reply