Can someone help me to create a login format which having email I'd and password fields. In addition it should have a button. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can someone help me to create a login format which having email I'd and password fields. In addition it should have a button.

when a user click the validate button the email and password entered by the user should be validated. the email field should be specified in the format such as xyz@kj.co.in or sje@jdb.com

16th Feb 2017, 3:04 PM
NasreenBanu
NasreenBanu - avatar
13 Answers
0
In which language?
16th Feb 2017, 7:01 PM
Varun Moghe
Varun Moghe - avatar
0
in java
17th Feb 2017, 1:26 AM
NasreenBanu
NasreenBanu - avatar
0
It can be done with the help of html
4th Mar 2017, 4:06 AM
vineet sharma
vineet sharma - avatar
0
I don't know html. I am learning java at present.
4th Mar 2017, 4:08 AM
NasreenBanu
NasreenBanu - avatar
0
I make such type of code with the help of html
4th Mar 2017, 4:10 AM
vineet sharma
vineet sharma - avatar
0
Then help me to out from this problem,however I will try to understand
4th Mar 2017, 4:11 AM
NasreenBanu
NasreenBanu - avatar
0
<html> <form method="get" enctype="application/x-www-form-urlencoded" action="/html/codes/html_form_handler.cfm"> <p> <label>Name <input type="text" name="student_name" required> </label> </p> <p> <label>Phone <input type="tel" name="phone_number"> </label> </p> <p> <label>Email <input type="email" name="email_address"> </label> </p> <fieldset> <legend>Choose the college you want</legend> <p><label> <input type="sci" name="comm" required value="art"> 5 stars </label></p> <p><label> <input type="sci" name="comm" required value="art"> 4 stars </label></p> <p><label> <input type="sci" name="comm" required value="tuktuk"> 3 stars </label></p> </fieldset> <p> <label>Date/Time <input type="datetime-local" name="pickup_time" required> </label> </p> <p> <p> <label>Special Instructions <textarea name="comments" maxlength="500"></textarea> </label> </p> <p><button>Submit Booking</button></p> </form> </html> <head> <title>first page</title> </head> <body bgcolor="#000099"> <h1> <font color="#FFFFFF"> Acet. ac. in</font> </h1> </body> </html> <form> <input type="text" name="username" /><br /> <input type="password" name="password" /> </form> <input type="radio" name="gender" value="male" />Male <br /> <input type="radio" name="gender" value="female" />Female <br /> <input type="submit" value="Submit" /> <form> <label>Your name:</label> <input id="user" name="username" type="text" /> </form> <form> <label for="email">Your e-mail address: </label> <input type="text" name="email" placeholder="" /> </form> <input id="car" type="text" list="colors" /> <datalist id="colors"> <option value="Red"> <option value="Green"> <option value="Yellow"> </datalist>
4th Mar 2017, 4:14 AM
vineet sharma
vineet sharma - avatar
0
Check this. Is this is matching from your requirements or not
4th Mar 2017, 4:15 AM
vineet sharma
vineet sharma - avatar
0
No
4th Mar 2017, 4:16 AM
NasreenBanu
NasreenBanu - avatar
0
Related to this?
4th Mar 2017, 4:17 AM
vineet sharma
vineet sharma - avatar
0
by using exception in java
4th Mar 2017, 7:35 AM
NasreenBanu
NasreenBanu - avatar
0
sorry but I dont have knowledge about java . U can take help from code playground of java something suff related to it
4th Mar 2017, 1:38 PM
vineet sharma
vineet sharma - avatar
0
It's ok and thanks for ur help
4th Mar 2017, 1:41 PM
NasreenBanu
NasreenBanu - avatar