-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignUp.html
More file actions
39 lines (30 loc) · 1.51 KB
/
Copy pathsignUp.html
File metadata and controls
39 lines (30 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>News Letter App</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="css/signUpCss.css">
</head>
<body class="text-center">
<form class="form-signin" method="POST">
<img class="mb-4" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTIG21pheSoV74pSdOr4AuF1g4tIONePA2dLw&usqp=CAU" alt="" width="300" height="200">
<h1 class="h3 mb-3 font-weight-normal">SignUp To my NewsLetter !</h1>
<label for="inputFirstName" class="sr-only">First Name</label>
<input type="text" name="firstName" class="form-control top" placeholder="First Name" required autofocus>
<label for="inputLastName" class="sr-only">Last Name</label>
<input type="text" name="lastName" class="form-control middle" placeholder="Last Name" required>
<label for="inputEmail" class="sr-only">Email</label>
<input type="email" name="email" class="form-control bottom" placeholder="Email" required>
<div class="checkbox mb-3">
<label>
<input type="checkbox" value="remember-me"> Remember me
</label>
</div>
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
<p class="mt-5 mb-3 text-muted">© FaceCopy</p>
</form>
</body>
</html>