Home Answers Viewqa HTML HTML login page code

 
 


Java Coder
HTML login page code
2 Answer(s)      4 months and 20 days ago
Posted in : HTML

Hi all, I am writing my first HTML JavaScrip validation page called "UserLogin.html". So, please guide me how to validate user and password feild in JavaScript?

If possible then please provide me the complete HTML JavaScript code for User Login Page.

Thanks in Advance!

View Answers

January 2, 2013 at 3:21 PM


function checkForm(form)
{
  if(form.username.value == "")
{
  alert("Error: Username cannot be blank!");
  form.username.focus();
  return false;
}
re = /^\w+$/;
if(!re.test(form.username.value)) {
  alert("Error: Username must contain only letters, numbers and underscores!");
  form.username.focus();
  return false;
}

if(form.pwd1.value != "" && form.pwd1.value == form.pwd2.value) {
  if(form.pwd1.value.length < 6) {
    alert("Error: Password must contain at least six characters!");
    form.pwd1.focus();
    return false;
  }
  if(form.pwd1.value == form.username.value) {
    alert("Error: Password must be different from Username!");
    form.pwd1.focus();
    return false;
  }
  re = /[0-9]/;
  if(!re.test(form.pwd1.value)) {
    alert("Error: password must contain at least one number (0-9)!");
    form.pwd1.focus();
    return false;
  }
  re = /[a-z]/;
  if(!re.test(form.pwd1.value)) {
    alert("Error: password must contain at least one lowercase letter (a-z)!");
    form.pwd1.focus();
    return false;
  }
  re = /[A-Z]/;
  if(!re.test(form.pwd1.value)) {
    alert("Error: password must contain at least one uppercase letter (A-Z)!");
    form.pwd1.focus();
    return false;
  }
} else {
  alert("Error: Please check that you've entered and confirmed your password!");
  form.pwd1.focus();
  return false;
}

alert("You entered a valid password: " + form.pwd1.value);
return true;
}

January 2, 2013 at 5:19 PM


html registration form code with validation

<html>
<body>
<form>
<table width="35%" height="30%" bgcolor="#FFFF66" align="center">

    <tr>        
        <td colspan=2><font size=3><center><b>HTML Login Page Code</b></center>     
    </tr>
    <tr>
        <td width="30%"><b>Name:</b><br/></td>
        <td><input type="text" size=25 maxlength=20 name="userid"></td>
    </tr>
    <tr>
        <td width="30%"><b>Password:</b><br/></td>
        <td><input type="Password" size=25 maxlength=20 name="pswrd"></td>
    </tr>

    <tr>
        <td ><input type="Reset">
        <input type="submit" onclick="check(this.form)" value="Login"/>
    </tr>

</table>
</form>
<script language="javascript">
function check(form)/*function to check userid & password*/
{
 /*the following code checkes whether the entered userid and password are matching*/
 if(form.userid.value == "user1" && form.pswrd.value == "pass1")
  {
    window.open('target.html')/*opens the target page while Id & password matches*/
  }
 else
 {
   alert("Error Password or Username")/*displays error message*/
  }
}
</script>

</body>
</html>









Related Pages:
HTML login page code
the complete HTML JavaScript code for User Login Page. Thanks in Advance!   ...HTML login page code  Hi all, I am writing my first HTML JavaScrip...;td colspan=2><font size=3><center><b>HTML Login Page
html login page with ajax
html login page with ajax  hi all... i want to create a login page using html and ajax for validation is must. please help me doing that with code...=="yes"){ alert("Welcome User"); }else{ alert("Invalid Login! Please try again
login page
login page  code for login page
login page code in asp.net
login page code in asp.net  i need front end and backend code for login page in vb asp.net using sql server....having code for submit button
login
login  how to create login page in jsp   Here is a jsp code that creates the login page and check whether the user is valid or not. 1...;tr><td></td><td><input type="submit" value="Login">
login
login  sample java awt/swing code to make loginpage invisible after loggedinto next page   Hi Friend, Try the following code: 1... java.awt.event.*; class Login { JButton SUBMIT; JLabel label1,label2; final
login page
login page  hi i'm trying to create login page using jsp. i get... the program. Following are my programs... 1.index.jsp <%@page contentType="text/html" pageEncoding="UTF-8"%> JSP Page
facebook login button html
facebook login button html  facebook login button html i have a facebook login button code ..but not sure how to use it. Can any one please explain? Here is the facebook login button code in html <fb:login-button
program code for login page in struts by using eclipse
program code for login page in struts by using eclipse  I want program code for login page in struts by using eclipse
jsp login page
jsp login page  hi tell me how to create a login page using jsp and servlet and not using bean... please tell how to create a database in sql server... please tell with code
php login and logout code
php login and logout code  Hi, Can anyone share there code for creating a user login and logout page in PHP?or any useful tutorial that can help to create a login and logout application in PHP.. Thanks in Advance
Spring Login Page Error
Spring Login Page Error  Dear Sir/Madam, I used the spring login page code. The index page is working fine. When i try to entry login and password , i am getting the below error: Please help me out in this. Let me know if i
Jdbc Login Page Validation using Combobox
Jdbc Login Page Validation using Combobox  I got Login By this code i want to login by validating with combobox....The link which you send its without combobox.i m unable to get login by verifying with combo box..Ex banglore
html
html  how we can give the form actions in html after register button in the login page
Login page validation on ipad
Login page validation on ipad  I am using userId & password... by single sign in button and want to switch on to next page. Used two labels again... the code or resorse for the same. Plz its urgent
code for user registration page and login page of emails using jsp
code for user registration page and login page of emails using jsp  hiiiiiii please send me the code for user registration page and login page of email using jsp and servlets and also code for database connectivity to oracle
generate java code and html code - Java Beginners
generate java code and html code  create a web application for museum....a)the first page wil be a login page for administrators.. passwords for all acounts should be stored in the database and checked on login... on success ogin
login page validation
login page validation  hi could you please send me code for login validations Email validation and password email should be in correct format and valid password in java   import java.awt.*; import javax.swing.
JSP Login Page Question
JSP Login Page Question  hey..i have a login page where different users first registered and then after they can login. my question is how a user can see only his data after login where different users data are stored
Html
Html  in the web page if judge select the age and category then automatically under that conditions the details will be display in the form of grid give me that code in html and java
how to create a login page and registration page?
how to create a login page and registration page?  hellow, pls tell me the code for how we can create a login page and registration page and how we can store the info in database.only in advance java as jsp
DropDown Department Login
with different tables. I have designed the HTML page in such a way the I have... down box and then login to the page. I have a drop down list box with Customs and Accounts..A Username and a Password field.Now want to login to the page
Login page
Login page  how to create Login page in java
Html
:48:44 PM Author : SAMSUNG --%> <%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01...; <head> <meta http-equiv="Content-Type" content="text/html
Html
:48:44 PM Author : SAMSUNG --%> <%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01...; <head> <meta http-equiv="Content-Type" content="text/html
Login form
of login form will really help to understand jsp page. In this  example we... the next page.  This jsp program works with html tags in which... of "loginaction.jsp" file: <%@page contentType="text/html" %>
need code for login in asp.net with c#
need code for login in asp.net with c#  hai iam trying to develop a project in asp.net with c#,so i need a code for login page using which admin and other users can log in.plz help me, thanks in advance
login
login  login page display an error showing failure to login even when the correct information is entered
View source code of a html page using java ..
View source code of a html page using java ..  I could find the html source code of a web page using the following program, http://download.oracle.com/javase/1.4.2/docs/api/java/net/URLConnection.html i could get the html code
Login With Drop Down
with different tables. I have designed the HTML page in such a way the I have... box and then login to the page. I have a drop down list box with Customs and Accounts..A Username and a Password field.Now want to login to the page
login page
login page  How to login as different user in php
redirecting a login authenticated form to a form to be displayed on the same page from where the login authentication has taken place.
redirecting a login authenticated form to a form to be displayed on the same page from where the login authentication has taken place.  I am.... If user is valid, welcome message will get displayed. Otherwise, the login page
Login Page
Login Page  Can anyone tell me the steps to create a login page in myeclipse 7.0 and validating it with login database in db2 9.7 ??? Please tell me
How to prevent from navigating to a page after reaching Login page using back button?
How to prevent from navigating to a page after reaching Login page using back... login page using back button and agin click browser forward button,the 2nd page... html,php,javascript.. Please provide me a better code to attain desired soulution
How to prevent from navigating to ck buttonnext page when user reaches login page using back button
How to prevent from navigating to ck buttonnext page when user reaches login... goback to user login page using back button and agin click browser forward button.... I am using html,php,javascript.. Please provide me a better code to attain
HTML
it shows as null. here is the html code for date of birth: <tr> <...;/html> 2)insertdate.jsp: <%@page import="java.sql.*"%> <%@page import="java.util.*"%> <%@page import="java.text.*"%> <% String mon
Creating Login Page In JSF using NetBeans
Creating Login Page In JSF using NetBeans  ... illustrates you how to create a login form in JSF using NetBeans. To create the jsp page... as below:   Write your code for login. In this example, login.jsp is created
login
login  how to login admin and user with the same fields(name & password) in single login page while the table for admin and user is seprate in database(mysql) please provide me solution
LOGIN PAGE
LOGIN PAGE  A java program with "login" as title,menus added, and a text field asking for firstname, lastname, and displaying current date and time
login page
login page  pls say how to create a login page in jsp and mysql using netbaens   Hi Friend, Please visit the following links: http://roseindia.net/jsf/netbeans/index.shtml http://roseindia.net/jsp/loginbean.shtml
html - WebSevices
web page using html and css. whenever i open my web page with internet.... i am sending you my html and css codes. please do some changes in my code. thank you. i will be really thankful to you. html code: About Us
login
login  i want to now how i can write code for form login incolude user and password in Jcreator 4.50   Hello Friend, Visit Here Thanks
Login Form
of +,on clicking which a login form appears. Only the middle column is different for each of the page. How to write a code for login authentication so...Login Form  I have 8 jsp pages.Each of them has three columns:Left
Login Form
of +,on clicking which a login form appears. Only the middle column is different for each of the page. How to write a code for login authentication so...Login Form  I have 8 jsp pages.Each of them has three columns:Left
Login Form
="stylesheet" type="text/css" name="anyname" href="<html:rewrite page='/css... Login Form       Login form in struts: Whenever you goes to access data from
verfication of user login and then redirecting it to user defined page
; hi, i have a login page that..calls the servlet..and i have used redirect...,the html page calls teh servlet..but..the servlet.is not redirecting to a user defined page.. after i press the submit button..in the login page, i am getting
login
want the code for login.. i created design it contains the field of user name... to check the user name and password from the data base.. please help me for the code
login
want the code for login.. i created design it contains the field of user name... to check the user name and password from the data base.. please help me for the code
login
want the code for login.. i created design it contains the field of user name... to check the user name and password from the data base.. please help me for the code
login
want the code for login.. i created design it contains the field of user name... to check the user name and password from the data base.. please help me for the code

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.