Code Monkey home page Code Monkey logo

sharedrop's Introduction

<title>Assignment</title> <style> fieldset{ background-color:dodgerblue; padding-top: 75px; padding-right: 100px; padding-bottom: 50px; padding-left: 100px; } h1{ font-size:30px; text-align: center; background-color:cyan; } body{ padding-top: 100px; padding-right: 200px; padding-bottom: 50px; padding-left: 200px; } </style> <script type='text/JavaScript'> function validationform(){ var x=document.myform.name.value;
		var y=document.myform.lname.value;

		if((x ==null ) && (y == null)){
			alert("Missing First Name or Last Name");
			return false;
		}
		else
		{
			return true;
		}
		var m=document.myform.email.value;
		if(m.indexof('@')<=0)
		{
			document.getElementById("Messege").innerHTML="Enter Valid email";
			return false;
		}
		if(m.charAt(m.length-4)!='.') && (m.charAt(m.length-3)!='.')
		{
			document.getElementById("Messege").innerHTML="Enter Valid email";
			return false;
		}

</script>

Sharedrop Registration

	<form name="myform" onsubmit="return validationform()" >
	First Name:<input type="text" name="fname" placeholder="e.g Jhon"  /><br><br>

	Last Name:<input type="text" name="lname" placeholder="e.g Disuza"></input> <br><br>

    Email     :<input type="text" name="email"placeholder="e.g [email protected]" value="" size="30"></input>
    <span id="Messege"> </span><br><br>

    Birth Date:<input type="Birth" name="dob"   placeholder=" dd/mm/yy" size="">
    <br><br>

    Phone Number:<input type="Phone" name="inputno" placeholder="e.g +91" size="12"><br><br>

    Password     :<input type="pass" name="Password" size="20"  ><br><br>

     
	<input type="submit" value="Register" >
	</form>

sharedrop's People

Contributors

ranjanaongit avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.