-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwaitlist.html
30 lines (27 loc) · 1.04 KB
/
waitlist.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Join Waitlist</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="page-container">
<div class="mdrn-main">
<div class="main-content">
<div class="container">
<h3>Join Our Waitlist</h3>
<form action="#" method="post" class="waitlist-form">
<input type="text" name="first_name" placeholder="First Name" required>
<input type="text" name="last_name" placeholder="Last Name" required>
<input type="email" name="email" placeholder="Email" required>
<textarea name="message" placeholder="Message" required></textarea>
<button type="submit" class="cta-button">Join</button>
</form>
</div>
</div>
</div>
</div>
</body>
</html>