odin-codespace/signup_form/index.html

47 lines
1.7 KiB
HTML
Raw Normal View History

2023-11-01 15:00:51 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
2023-11-03 17:00:22 -04:00
<title>Join Our Awesome Mailing list!</title>
2023-11-01 15:00:51 -04:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="sidebar">
<div class="logo logo-photo"></div>
<div class="logo logo-text"></div>
</div>
<div class="form">
<h1 class="call-to-action">Join our mailing list!</h1>
2023-11-03 17:00:22 -04:00
<form action="" method="post">
<div class="form-input">
2023-11-05 15:26:13 -05:00
<label for="name">NAME</label>
2023-11-04 10:05:32 -04:00
<input type="text" name="name" id="name" placeholder="Enter your name." required>
2023-11-03 17:00:22 -04:00
</div>
<div class="form-input">
2023-11-05 15:26:13 -05:00
<label for="email">EMAIL</label>
2023-11-04 10:05:32 -04:00
<input type="email" name="email" id="email" placeholder="you@example.com" required>
2023-11-03 17:00:22 -04:00
</div>
<div class="form-input">
2023-11-05 15:26:13 -05:00
<label for="password">PASSWORD</label>
2023-11-04 10:05:32 -04:00
<input type="password" name="password" id="password" required minlength="8">
2023-11-03 17:00:22 -04:00
</div>
<div class="form-input">
2023-11-05 15:26:13 -05:00
<label for="password_confirmation">CONFIRM PASSWORD</label>
2023-11-04 10:05:32 -04:00
<input type="password" name="password_confirmation" id="password_confirmation" required
minlength="8">
2023-11-03 17:00:22 -04:00
</div>
2023-11-05 15:26:13 -05:00
<div class="form-input">
<button type="submit">Sign Up</button>
</div>
2023-11-03 17:00:22 -04:00
</form>
2023-11-01 15:00:51 -04:00
</div>
</div>
<script src="js/script.js"></script>
</body>
2023-11-03 17:00:22 -04:00
2023-11-01 15:00:51 -04:00
</html>