WEB PROGRAMMING (Finals): TURORIAL; Signup/Login
HTML CODE:
<!DOCTYPE html>
<head>
<title>SIGN UP | LOGIN FORM</title>
<link rel="stylesheet" href="SL.css" />
</head>
<body>
<div class="signup-box">
<h1>SIGN UP NOW</h1>
<h4> This may take a few minutes. </h4>
<form>
<label>FIRST NAME</label>
<input type="text" placeholder="" />
<label>LAST NAME</label>
<input type="text" placeholder="" />
<label>EMAIL</label>
<input type="email" placeholder="" />
<label>PASSWORD</label>
<input type="password" placeholder="" />
<label>CONFIRM PASSWORD</label>
<input type="password" placeholder="" />
<input type="button" value="SUBMIT" />
</form>
<p class="para-2">
Already have an account? <a href="LOGIN.html">Login here</a>
</p>
</div>
</body>
</html>
Comments
Post a Comment