-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
34 lines (27 loc) · 1.5 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, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="/image/coins.jpg">
<title>NewsLetter SignUp</title>
<link rel="canonical" href="https://getbootstrap.com/docs/4.0/examples/sign-in/">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Custom styles for this template -->
<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/coins.jpg" alt="" width="72" height="72">
<h1 class="h3 mb-3 font-weight-normal">Please sign Up for our NewsLetter</h1>
<input type="text" class="form-control top" placeholder="First Name" name = 'firstName' required autofocus>
<input type="text" class="form-control middle" placeholder="Last Name" name = 'lastName' required>
<input type="email" class="form-control bottom" placeholder="Email" name = "email" required>
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign Up</button>
<p class="mt-5 mb-3 text-muted">© 2021 Karan Kaira</p>
</form>
</body>
</html>