Take a tour of our final login and sign-up page. HTML CODE: We create three divs- the first one to select from the option of either login or sign-up containing two buttons, the second one with a form for sign-up, and the third one for login. To all the buttons on the page, we provide a single class and for both the forms, a single class is given. CODE: <div id="options"> <button class="but" style="margin-top: 20px;" onclick="appear();">Login</button> <button class="but" onclick="sinapp();">Sign-Up</button> <p>Use G-mail or Facebook account</p> </div> <div id="sign" class="formin"> <form id="sin-cont"> <input type="text" name="fn" placeholder="Enter Your First Name" required> <input typ...
Comments
Post a Comment