-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
25 lines (23 loc) · 1.23 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
<!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="">
<title>NewsLetter</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="styles.css" rel="stylesheet">
</head>
<body class="text-center">
<form action="/" method="post" class="form-signin">
<img class="mb-4" src="./ajai1.jpg" alt="" width="72" height="72">
<h1 class="h3 mb-3 font-weight-normal">Signup To My NewsLetter</h1>
<input name="Fname" type="text" class="form-control top" placeholder="First Name" required autofocus>
<input name="Sname" type="text" class="form-control middle" placeholder="Last Name" required>
<input name="Email" type="email" class="form-control end" placeholder="email" required>
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign Me Up!</button>
<p class="mt-5 mb-3 text-muted">© AjaiReshman</p>
</form>
</body>
</html>