-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (40 loc) · 1.79 KB
/
index.html
File metadata and controls
57 lines (40 loc) · 1.79 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
<meta name="generator" content="Hugo 0.84.0">
<title>Newsletter Sign-up</title>
<link rel="canonical" href="https://getbootstrap.com/docs/5.0/examples/sign-in/">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script> -->
<!-- Custom styles for this template -->
<link href="css/styles.css" rel="stylesheet">
</head>
<body class="text-center">
<main class="form-signin formStyle">
<form action="/" method="post">
<img class="mb-4" src="/docs/5.0/assets/brand/bootstrap-logo.svg" alt="" width="72" height="57">
<h1 class="h3 mb-3 fw-normal">Sign Up</h1>
<div class="form-floating">
<input name="Fname" type="text" class="form-control" placeholder="First name" required autofocus>
<label for="Fname">First Name</label>
</div>
<div class="form-floating">
<input name="Lname" type="text" class="form-control input2" placeholder="Last name" required>
<label for="Lname">Last Name</label>
</div>
<div class="form-floating">
<input name="Email" type="email" class="form-control" placeholder="Password" required>
<label for="Email">Email</label>
</div>
<div class="checkbox mb-3">
</div>
<button class="w-100 btn btn-lg btn-outline-dark" type="submit">Sign in</button>
<p class="mt-5 mb-3 text-muted">© OG 2025</p>
</form>
</main>
</body>
</html>