-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
29 lines (27 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no">
<meta name="description" content="Flight Club: Get cheapest flight deals!">
<meta name="author" content="Abhijeet Pandit">
<title>Flight Club Subscription</title>
<link rel="icon" href="image/newsletter.png">
<link rel="canonical" href="https://getbootstrap.com/docs/4.1/examples/sign-in/">
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<!-- Custom styles -->
<link href="css/styles.css" rel="stylesheet">
</head>
<body class="text-center">
<form class="form-signin" action="/" method="post">
<img class="mb-4" src="image/newsletter.png" alt="" width="72" height="72">
<h1 class="h3 mb-3 font-weight-normal">Subscribe to my<br>Flight club</h1>
<input type="text" class="form-control top" placeholder="First name" required autofocus name="fname">
<input type="text" class="form-control middle" placeholder="Last name" required autofocus name="lname">
<input type="email" id="inputEmail" class="form-control bottom" placeholder="Enter email to join" required autofocus name="email">
<button class="btn btn-lg btn-primary btn-block mb-5" type="submit">Get cheap flights</button>
<a class="mb-3 text-muted" href="https://github.com/abhijeetpandit7/">© Abhijeet Pandit</a>
</form>
</body>
</html>