need help with password

This is a discussion on "need help with password" within the JavaScript Forum section. This forum, and the thread "need help with password are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > JavaScript Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old May 23rd, 2007, 21:35
Junior Member
Join Date: Apr 2007
Location: england
Age: 20
Posts: 18
Thanks: 0
Thanked 1 Time in 1 Post
need help with password

hi, i need help with my coding here... the code works fine... i just need it so that the characters the user types in will be displayed as '*' instead of the actual character, this is only to protect one page...

Code: Select all
  <!--
 
  var password = "password"
  var x = prompt("Enter in the password "," ")
  if (x.toLowerCase() == password) {
  alert("Password correct \n \n Click OK to proceed")
  location = "diary/diary.html"
  }
 
  else {
  location = "incorrect.html"
  }
 
  //-->
Reply With Quote

  #2 (permalink)  
Old May 24th, 2007, 02:11
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: need help with password

Use the password input.

<input type="password"> instead of <input type="text">.
Reply With Quote
  #3 (permalink)  
Old May 24th, 2007, 12:05
Junior Member
Join Date: Apr 2007
Location: england
Age: 20
Posts: 18
Thanks: 0
Thanked 1 Time in 1 Post
Re: need help with password

ok that does help... im not at my computer to play about with that...

only issue there is im not using any 'input' in the code... i am using var x = prompt

will play about with it and see what i can come up with...

thanks
Reply With Quote
Reply

Tags
password

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Forgot password and Change password PHP script Chono PHP Forum 4 May 16th, 2008 09:13
md5 password error csun PHP Forum 2 May 9th, 2007 02:29
Username & Password robukni PHP Forum 13 Apr 4th, 2007 22:36
lost password itorch Databases 5 Dec 13th, 2006 01:54
Password Validation s_mazhar Web Page Design 1 Oct 18th, 2005 21:38


All times are GMT. The time now is 19:09.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43