-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
34 lines (28 loc) · 2.03 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
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="/docs/4.0/assets/img/favicons/favicon.ico">
<title>Newsletter Signup</title>
<link rel="canonical" href="https://getbootstrap.com/docs/4.0/examples/sign-in/">
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Custom styles for this template -->
<link href="css/styles.css" rel="stylesheet">
</head>
<body class="text-center">
<form action='/' class="form-signin" method="post">
<img class="mb-4 w-75 h-50" src="https://media.istockphoto.com/vectors/email-marketing-vector-id1168518509?k=20&m=1168518509&s=612x612&w=0&h=3EywjoxfH9xyOL4c0xTPHJYXsjp2v10J5R2w_utxakI=" alt="" width="72" height="72">
<h1 class="h3 mb-3 fw-bold">Signup To Our Newsletter</h1>
<input type="text" class="form-control top" name="firstName"placeholder="First Name" required autofocus>
<input type="text" class="form-control middle" name="lastName" placeholder="Last Name" required>
<input type="email" id="inputEmail bottom" name="email" class="form-control" placeholder="Email address" required >
<button class="btn btn-lg btn-primary btn-block mt-3" type="submit">Sign in</button>
<p class="mt-5 mb-3 text-muted">© NFTOP</p>
</form>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</body>
</html>