-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
39 lines (34 loc) · 1.69 KB
/
signup.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
31
32
33
34
35
36
37
38
39
<!doctype html>
<html lang="en" data-bs-theme="auto">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="Julian Asogwa">
<meta name="generator" content="Hugo 0.112.5">
<title>Newsletter Signup</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<main class="form-signin w-100 m-auto">
<form action="/" method="POST">
<!-- <img class="mb-4" src="/docs/5.3/assets/brand/bootstrap-logo.svg" alt="" width="72" height="57"> -->
<p class="h4 ms-3 mb-3 fw-normal">Signup to My Newsletter!</p>
<div class="form-floating">
<input type="text" class="form-control" id="floatingName" placeholder="Name" name="fullName">
<label for="floatingName">Full Name</label>
</div>
<div class="form-floating">
<input type="email" class="form-control" id="floatingInput" placeholder="[email protected]" name="email">
<label for="floatingInput">Email address</label>
</div>
<div class="form-floating">
<input type="date" class="form-control" id="floatingDOB" placeholder="Date of Birth" name="dateOfBirth">
<label for="floatingDOB">Date of Birth</label>
</div>
<button class="btn btn-primary w-100 py-2 my-4" type="submit">Sign up</button>
<p class="mt-5 mb-3 text-body-secondary">© Julian Asogwa 2023</p>
</form>
</main>
</body>