-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
34 lines (27 loc) · 1.52 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PixelHub Newsletter Sign-Up</title>
<link rel="canonical" href="https://getbootstrap.com/docs/5.1/examples/sign-in/">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Custom CSS -->
<link href="css/styles.css" rel="stylesheet">
</head>
<body class="text-center">
<main class="form-signin">
<form method="post" action="/">
<img class="mb-4" src="images/logo-transparent.png" alt="" width="120" height="120">
<h1 class="h3 mb-3 fw-normal">Signup to My Newsletter!</h1>
<input type="text" name="name" class="form-control top" placeholder="Full Name" required autofocus>
<input type="text" name="username" class="form-control middle" placeholder="Instagram Username" required>
<input type="email" name="email" class="form-control bottom" placeholder="Email Address" required>
<button class="w-100 btn btn-lg btn-primary" type="submit">Sign Up</button>
<p class="mt-5 mb-3 text-muted">© <a href="https://www.instagram.com/pixelhub_official/">PixelHub Photography</a></p>
</form>
</main>
<script type='text/javascript' src='config.js'></script>
</body>
</html>