-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
60 lines (21 loc) · 1.19 KB
/
signup.html
File metadata and controls
60 lines (21 loc) · 1.19 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<title>Newsletter Sign-up</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link rel="stylesheet" href="css/signup.css">
</head>
<body class="text-center">
<main class="form-signin w-100 m-auto">
<form method="post" action="/">
<h1 class="h3 mb-3 fw-normal">Please sign in</h1>
<input type="text" name="fName" class="form-control top" placeholder="First Name" required>
<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 Up</button>
<p class="mt-5 mb-3 text-muted">Ammad Ali</p>
</form>
</main>
</body>
</html>