forms
Register Form (Dark)
라이브 미리보기새 탭에서 열기 ↗
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>register-form-dark</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form class="form">
<p class="title">Register </p>
<p class="message">Signup now and get full access to our app. </p>
<div class="flex">
<label>
<input class="input" type="text" placeholder="" required="">
<span>Firstname</span>
</label>
<label>
<input class="input" type="text" placeholder="" required="">
<span>Lastname</span>
</label>
</div>
<label>
<input class="input" type="email" placeholder="" required="">
<span>Email</span>
</label>
<label>
<input class="input" type="password" placeholder="" required="">
<span>Password</span>
</label>
<label>
<input class="input" type="password" placeholder="" required="">
<span>Confirm password</span>
</label>
<button class="submit">Submit</button>
<p class="signin">Already have an acount ? <a href="#">Signin</a> </p>
</form>
</body>
</html>