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="ModalSignupFormCSS.css">
<!--Only have to change the button!!-->
<button onclick="document.getElementbyID('modalbox').style.display='block'">Signup</button>
<!--modalbox with form-->
<div id="modalbox" class="modal">
<span onclick = "document.getElementbyID('modalbox').syle.display='none'"
class="close" title="close modal">times;</span>
<form class="Modal-Content" action="/action_page.php">
<div class="secondbox">
<h1> Become a professional artist today!</h1>
<p>Fill in the blanks to create your account and start today!</p>
<hr>
<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>
<!--End of SignupForm (from other file..)-->
<div class= "clearreset">
<button type="button"
onclick="document.getElementbyID('modalbox').style.display='none'"
class="cancelbutton">Cancel</button>
<button type = "Submit" class="register">Register</button>
</div>
</div>
</form>
</div>
</html>