-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (39 loc) · 2.1 KB
/
index.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
40
41
42
43
44
45
46
47
48
49
50
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Newsletter Signup</title>
<meta name="theme-color" content="#712cf9">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link href="public/css/styles.css" rel="stylesheet">
<link rel="shortcut icon" href="public/images/favicon-signup.png" type="image/x-icon">
</head>
<body class="text-center">
<main class="form-signin w-100 m-auto">
<form action="/" method="post">
<img class="mb-4" src="public/images/newsLogo.png" alt="Microphone Newsletter Logo" width="110">
<h1 class="h3 mb-3 fw-normal">Signup to My Newsletter!</h1>
<div class="form-floating">
<input name="fName" type="text" class="form-control top" placeholder="First Name" required autofocus>
<label>First Name</label>
</div>
<div class="form-floating">
<input name="lName" type="text" class="form-control middle" placeholder="Last Name" required>
<label>Last Name</label>
</div>
<div class="form-floating">
<input name="email" type="email" class="form-control bottom" id="floatingInput"
placeholder="Email" required>
<label>Email</label>
</div>
<button class="w-100 btn btn-lg btn-primary" type="submit">Sign Me Up</button>
<p class="mt-5 mb-3 text-muted">© 1993–2022</p>
</form>
</main>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3"
crossorigin="anonymous"></script>
</body>
</html>