Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<!DOCTYPE html>
<html>
<link rel="stylesheet" type="text/css" href="ModalSignupFormCSS2.css">
<!-- BUTTON TO OPEN UP THE FORM-->
<button class=firstregister onclick = "document.getElementById('modalbox').style.display='block'">Register</button>
<!-- Modal Box-->
<div id="modalbox" class = "modal">
<span onclick = "document.getElementById('modalbox').style.display='none'"
class="close" title="close modalbox">x</span>
<form class= "modal-content" action="/action_page.php">
<div class = "container">
<h1>Become a Professional Artist Today!</h1>
<p> To create your account, please fill in the blanks!</p>
<hr>
<!--from copied from version 1-->
<label for="firstname"><b>First Name*:</b></label>
<input type="text" placeholder="Enter First Name" name="firstname" required>
<label for="lastname"><b>Last Name*:</b></label>
<input type="text" placeholder="Enter Last Name" name="lastname" required>
<label for="dob"><b>Date of birth*:</b></label>
<input type="date" placeholder="Enter your date of birth*" name="dob" required>
<label for="email"><b>E-Mail*:</b></label>
<input type="email" placeholder="Enter your E-mail Address" name="email" required>
<label for="password"><b>Password*:</b></label>
<input type="password" placeholder="Enter your Password" name=password>
<label for="rpassword"><b>Password Confimation*:</b></label>
<input type="password" placeholder="Re-enter your Password" name=rpassword>
<div class = "clearreset">
<button type = "button" onclick="document.getElementById('modalbox').style.display='none'" class = "cancelbutton">Cancel</button>
<button type = "Submit" class = "Register">Join now!</button>
</div>
</div>
</form>
</div>
</html>