-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
75 lines (69 loc) · 1.86 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
64
65
66
67
68
69
70
71
72
73
74
75
<!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="/docs/4.0/assets/img/favicons/favicon.ico" />
<title>My Newsletter</title>
<link
rel="canonical"
href="https://getbootstrap.com/docs/4.0/examples/sign-in/"
/>
<!-- Bootstrap core CSS -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<!-- Custom styles for this template -->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body class="text-center">
<form class="form-signin" method="POST" action="/">
<img
class="mb-4"
src="images/profile-round.png"
alt=""
width="72"
height="72"
/>
<h1 class="h3 mb-3 font-weight-normal">Subscribe to my newsletters.</h1>
<input
type="text"
id="firstname"
name="firstname"
class="form-control top"
placeholder="First Name"
required
autofocus
/>
<input
type="text"
id="lastname"
name="lastname"
class="form-control middle"
placeholder="Last Name"
required
autofocus
/>
<input
type="email"
id="email"
name="email"
class="form-control bottom"
placeholder="Email"
required
/>
<button class="btn btn-lg btn-primary btn-block" type="submit">
Subscribe
</button>
<p class="mt-5 mb-3 text-muted">© Edward Allen Mercado</p>
</form>
</body>
</html>