Computer Science, asked by NARIF8806, 1 year ago

Coding of a javascript login page

Answers

Answered by AbhinSreekumar
0

Hope this code helps.. I did this code for my project

Attachments:
Answered by abhi200414
0

the login page is given here:

<html> <head> <title>HTML Table</title> </head> <body> <form method="" action=""> <table border="1" align="center" width="400" bgcolor="#CCCCCC" > <caption>Registration form</caption> <tr> <th>Enter your first name</th> <td><input type="text" name="fn" id="fn1" maxlength="10" title="enter your first name" placeholder="enter your first name" required/></td> </tr> <tr> <th>Enter your last name</th> <td><input type="text"/></td> </tr> <tr> <th>Enter your password</th> <td><input type="password"/></td> </tr> <tr> <th>ReEnter your password</th> <td><input type="password"/></td> </tr> <tr> <th>Enter your email</th> <td><input type="email"/></td> </tr> <tr> <th>Enter your mobile</th> <td><input type="number"/></td> </tr> <tr> <th>Enter your address</th> <td><textarea rows="8" cols="20"></textarea></td> </tr> <tr> <th>Select your gender</th> <td> male<input type="radio" name="g" value="m"/> female<input type="radio" name="g" value="f"/> </td> </tr> <tr> <th>Select your hobbies</th> <td> hobby1<input type="checkbox" name="x[]" value="h"/> hobby2<input type="checkbox" name="x[]" value="h2"/> hobby3<input type="checkbox" name="x[]" value="h3"/> </td> </tr> <tr> <th>Select your DOB</th> <td><input type="date"/></td> </tr> <tr> <th>Select your Country</th> <td> <select name="country"> <option value="" selected="selected" disabled="disabled">Select your country</option> <option value="1">India</option> <option value="2">Pakistan</option> </select> </td> </tr> <tr> <th>Upload your pic</th> <td><input type="file"/></td> </tr> <tr> <td colspan="2" align="center"><input type="submit" value="Save My Data"/> <input type="reset" value="Reset Data"/> </td> </tr> </table> </form> </body> </html>

Similar questions