As a starter, anytime you come across sign up form, might think it will take a full year for you to code it out. Well, I disagree with your thinking. You can build up sign up form within few minutes. heads up! Sign up, sign in, sign out, comment box are all same html form elements with different php and JavaScript functions. Mind you, we are not going to write advance functions. In other words, we are not using JavaScript and php codes to make an example on this post. So quickly, as usual, html form also has opening and closing syntax. Then inside those syntax, we write the individual input field base on what the developer want. Example; <form action="register.php" name="sign-up-form" method="POST"> <input type="text" name="email" placeholder="enter valid email" /><br /><br q/> <input type="text" name="password" placeholder="choose password" /><br /><br />...
Comments
Post a Comment