-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (76 loc) · 3.85 KB
/
index.html
File metadata and controls
91 lines (76 loc) · 3.85 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Newsletter - Sign Up</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Section: Design Block -->
<section class="text-center">
<!-- Background image -->
<div class="p-5 bg-image" style="
background-image: url('https://mdbootstrap.com/img/new/textures/full/171.jpg');
height: 300px;
"><h1>NEWSLETTER</h1>
</div>
<!-- Background image -->
<div class="card mx-4 mx-md-5 shadow-5-strong" style="
margin-top: -100px;
background: hsla(0, 0%, 100%, 0.8);
backdrop-filter: blur(30px);
">
<div class="card-body py-5 px-md-5">
<div class="row d-flex justify-content-center">
<div class="col-lg-8">
<h2 class="fw-bold mb-5">Sign up now</h2>
<form action="/" method="post">
<!-- 2 column grid layout with text inputs for the first and last names -->
<div class="row">
<div class="col-md-6 mb-4">
<div class="form-outline">
<input type="text" id="form3Example1" class="form-control" name="firstName"
required />
<label class="form-label" for="form3Example1">First name</label>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="form-outline">
<input type="text" id="form3Example2" class="form-control" name="lastName"
required />
<label class="form-label" for="form3Example2">Last name</label>
</div>
</div>
</div>
<!-- Email input -->
<div class="form-outline mb-4">
<input type="email" id="form3Example3" class="form-control" name="mail" required />
<label class="form-label" for="form3Example3">Email address</label>
</div>
<!-- Password input -->
<div class="form-outline mb-4">
<input type="password" id="form3Example4" class="form-control" nam="pass" required />
<label class="form-label" for="form3Example4">Password</label>
</div>
<!-- Checkbox -->
<!-- Submit button -->
<button type="submit" class="btn btn-primary btn-block mb-4">
Sign up
</button>
<!-- Register buttons -->
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Section: Design Block -->
</body>
</html>