-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
26 lines (25 loc) · 1.38 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
<!doctype html>
<html lang="en" data-bs-theme="auto">
<head>
<!-- <script src="/docs/5.3/assets/js/color-modes.js"></script> -->
<meta charset="utf-8">
<title>Newsletter Signup</title>
<link rel="icon" type="image/png" href="images/favicon.png">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<!-- Custom styles for this template -->
<link href="css/styles.css" rel="stylesheet">
</head>
<body class="text-center">
<main class="form-signin w-100 m-auto">
<form action="/" method="post">
<img class="mb-4" src="images/icon.png" alt="" width="72" height="72">
<h1 class="h3 mb-3 fw-normal heading"><b>Signup to My Newsletter!</b></h1>
<input type="text" name="FName" class="form-control" placeholder="First Name" required autofocus>
<input type="text" name="LName" class="form-control" placeholder="Last Name" required>
<input type="email" name="email" class="form-control" placeholder="Email" required>
<button class="w-100 btn btn-lg btn-primary signup-text" type="submit">Sign Me Up!</button>
<p class="mt-5 mb-3 text-body-secondary">© Harsh Srivastava</p>
</form>
</main>
</body>
</html>