Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 Email Reminder on Login Page
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

jfitz
Junior Member

USA
345 Posts

Posted - 20 December 2002 :  10:33:18  Show Profile
Too many of our new registrants fail to check their email and activate their registrations, and end up emailing the webmaster with a complaint. I added the following small change to login.asp to show a reminder in the login form.

It adds this text to the bottom of the id / password form:

Note: If you recently registered and you are having trouble logging in, be certain that you confirmed your registration by clicking on the link in the email you received. (You did register with a valid email address to receive the confirmation message, didn't you?)

In login.asp, make the following change:

Around line 147, find

Response.Write	"                    </tr>" & vbNewLine & _
		"                  </table>" & vbNewLine & _
                "                </td>" & vbNewLine & _
		"              </tr>" & vbNewLine & _
		"            </table>" & vbNewLine & _
		"          </td>" & vbNewLine & _
		"        </form>" & vbNewLine & _
		"        </tr>" & vbNewLine & _
		"      </table>" & vbNewLine & _
		"      <br />" & vbNewLine


Replace with

Response.Write	"                    </tr>" & vbNewLine & _
		"                  </table>" & vbNewLine
if strEmail = "1" and strEmailVal = "1" then
  Response.Write  "<table width=""90%"" align=""center""><tr><td>Note: If you recently registered and you are having trouble logging in, be certain that you confirmed your registration by clicking on the link in the email you received.  (You <i>did</i> register with a valid email address to receive the confirmation message, didn't you?)</td></tr></table>" & vbNewLine
end if
Response.Write  "                </td>" & vbNewLine & _
		"              </tr>" & vbNewLine & _
		"            </table>" & vbNewLine & _
		"          </td>" & vbNewLine & _
		"        </form>" & vbNewLine & _
		"        </tr>" & vbNewLine & _
		"      </table>" & vbNewLine & _
		"      <br />" & vbNewLine


Replace login.asp with the new version, and your're done.

--Jördan
It's a wasted day if you don't spend at least part of it flying upside down.

David K
Junior Member

494 Posts

Posted - 20 December 2002 :  18:35:05  Show Profile  Send David K an AOL message  Send David K an ICQ Message  Send David K a Yahoo! Message
nice small MOD
Go to Top of Page

jfitz
Junior Member

USA
345 Posts

Posted - 20 December 2002 :  19:00:05  Show Profile
Thanks. This, and delaying the registration auto load of login.asp, together seem to be helping.

--Jördan
It's a wasted day if you don't spend at least part of it flying upside down.
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.25 seconds. Powered By: Snitz Forums 2000 Version 3.4.07