How do i link my java script to my site?
-
i am working on a site for the course im on and i want to make a functioning log in, i have the script but i cant get it to link with the forms in my HTML, this is my code function Login(form) { username = new Array("admin","u2","u3","u4","u5","u6","… password = new Array("admin1","p2","p3","p4","p5","p6",… page = "login" + ".html"; if (form.username.value == username[0] && form.password.value == password[0] || form.username.value == username[1] && form.password.value == password[1] || form.username.value == username[2] && form.password.value == password[2] || form.username.value == username[3] && form.password.value == password[3] || form.username.value == username[4] && form.password.value == password[4] || form.username.value == username[5] && form.password.value == password[5] || form.username.value == username[6] && form.password.value == password[6] || form.username.value == username[7] && form.password.value == password[7] || form.username.value == username[8] && form.password.value == password[8] || form.username.value == username[9] && form.password.value == password[9]) { window.self.location.href = index.html; return true; } else { alert("Either the username or password you entered is incorrect.\nPlease try again."); form.username.focus(); } return true; } but the code we are using is Pass=prompt("Please Enter User Name", "") if (Pass=="Admin") {document.write('<center><font size="+2"><p>Welcome CJ</p><p><a href=index.html>you logged in... sweet!</p></font></a></center>')} else if (Pass=="Guest") {document.write('<center><font size="+2"><p>Welcome Guest</p><p><a href=index.html>Thank you for logging in please click here!</p></font></a></center>')} the second code works but it is hardly a secure login as of the lack of a password (i know the first is as it is readable by everyone) what i want is the user name to link with the username form and the password to link to the password form on the login.html page, i would also like it if the doc could right up a link when enterd correcly that will take you to the index. any help would be appreciated ps. i now there is no HTML coding to ho with it but you can make a quick page as my site has CSS and it would run over the charictor limit.
-
Answer:
First, you don't need to pass the form, use form object and name attributes to access to them Second, in your if statement you need to put usernames and passwords inside parenthesis (assuming password[0] belongs to username[0] and so on) let's say your form's name is myform, username input name is user and password input name is pass: function Login() { ... var u = document.forms["myform"]["user"].value; var p = document.forms["myform"]["pass"].value; if ((u == username[0] && p == password[0]) || (u == username[1] && p == password[1]) || ... (u == username[9] && p == password[9])) { //rest of your code }
chris at Yahoo! Answers Visit the source
Other answers
Better: Login Codes: Website Access Manager - http://www.coffeecup.com/website-access-manager/ Depending on what you run: How to: Create an ASP.NET Login Page - http://msdn.microsoft.com/en-us/library/ms178331.aspx Creating Login Page - http://www.adesdesign.net/php/tutorials/dreamweaver/secure_login.php Create login page - http://www.interaktonline.com/Documentation/MXCalendar/4243_createlogin.htm PHP Login System with Admin Features: http://www.evolt.org/node/60384 $_SESSION based login system ::Class::: http://bb.dzsoundnirvana.com/viewtopic.php?f=3&t=36 Or,: http://answers.yahoo.com/question/index?qid=20100413175316AASAuQc PHP Login Script with Remember Me Feature: http://www.evolt.org/node/60265 How to Create a PHP AutoLogin (‘Remember Me’) Feature using Cookies: http://www.bitrepository.com/php-autologin.html Making A Cool Login System With PHP, MySQL & jQuery: http://tutorialzine.com/2009/10/cool-login-system-php-jquery/ Ron
Shadow Knows
Related Q & A:
- How can I link to the latest post on Tumblr?Best solution by Stack Overflow
- how can I write this shell script in python?Best solution by Stack Overflow
- How do I link my yahoo mail to Microsoft Outlook?Best solution by Yahoo! Answers
- How do I link my Xbox 360 Gamertag to my EA account?Best solution by gamefaqs.com
- How do I link my PayPal account to my Yahoo! account?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.