-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign-up.html
45 lines (28 loc) · 1.49 KB
/
sign-up.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link href="./css/style.css" rel="stylesheet">
<title>News-Letter SignUp</title>
</head>
<body>
<div class="mnnit">
<img src="./images/Motilal_Nehru_National_Institute_of_Technology_Allahabad_logo.png" height="150px">
</div>
<main class="form-signin w-100 m-auto">
<div class="form-align">
<form action="/" method="post">
<h1 class="signup">SignUp To Our NewsLetter!</h1>
<input type="text" class="form-control top" name="firstname" placeholder="First Name" required autofocus>
<input type="text" class="form-control middle" name="lastname" placeholder="Last Name" required>
<input type="email" class="form-control bottom" name="email" placeholder="Email" required>
<button class="btn btn-primary w-100 py-2" type="submit">Sign Up</button>
<p class="mt-5 mb-3 text-body-secondary">©Krishnendu 2023</p>
</form>
</main>
</div>
</body>
</html>