-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
42 lines (29 loc) · 1.45 KB
/
signup.html
File metadata and controls
42 lines (29 loc) · 1.45 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
<!doctype html>
<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="">
<meta name="generator" content="Hugo 0.101.0">
<title>Sign-in</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link href="css/style.css" rel="stylesheet">
<!-- Favicons -->
<meta name="theme-color" content="#712cf9">
<!-- Custom styles for this template -->
</head>
<body class="text-center">
<main class="form-signin w-100 m-auto">
<form action="/" method="post">
<img class="mb-4" src="css/ingenuity.jpeg" alt="" width="72" height="57">
<h1 class="h3 mb-3 fw-normal">Sign in to My Newsletter!</h1>
<input type="text" name="fname" class="form-control top" placeholder="First Name" required autofocus>
<input type="text" name="lname" class="form-control middle" placeholder="Last Name" required>
<input type="email" name="email" class="form-control bottom " placeholder="Email" required>
<button class="w-100 btn btn-lg btn-primary" type="submit">Sign me up!</button>
<p class="mt-5 mb-3 text-muted">©aayushkrishnan</p>
</form>
</main>
</body>
</html>