-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
63 lines (50 loc) · 2.82 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!doctype html>
<html lang="en">
<head>
<title>Sign up to Newsletter</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="images/nl.ico">
</head>
<body class="img js-fullheight" style="background-image: url(images/bg.jpg);">
<section class="ftco-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4">
<div class="login-wrap p-0">
<h3 class="mb-4 text-center">Sign Up to MY Newsletter!</h3>
<form action="/" class="signin-form" method="POST">
<div class="form-group">
<input type="text" name="fname" class="form-control top"
placeholder="First Name" autofocus>
</div>
<div class="form-group">
<input type="text" name="lname" class="form-control middle"
placeholder="Last Name" required>
</div>
<div class="form-group">
<input type="email" name="email" class="form-control bottom"
placeholder="Email" required>
</div>
<div class="form-group">
<button class="form-control btn btn-primary submit px-3"
type="submit">Sign Me up!</button>
</div>
<div class="form-group">
<p class="copyright">© Saurabh Kumar Sharma</p>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<script src="js/jquery.min.js"></script>
<script src="js/popper.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>