-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
38 lines (30 loc) · 1.83 KB
/
Copy pathsignup.html
File metadata and controls
38 lines (30 loc) · 1.83 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
<!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.108.0">
<title>Registration Page</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="favicon.ico">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
</head>
<body class="text-center">
<main class="form-signin w-100 m-auto">
<form action="/" method="post">
<img class="mb-4" src="Images/Nakul logo.png" alt="" width="72" height="57">
<h1 class="h3 mb-3 fw-normal">Register Yourself</h1>
<input type="email" name="mail" class="form-control n0" placeholder="Email address" required >
<input type="text" name="fname" class="form-control n1" placeholder="First Name" required >
<input type="text" name="lname" class="form-control n2" placeholder="Last Name" required>
<input type="date" name="DOB" class="form-control n3" placeholder="Date Of Birth" required>
<input type="number" name="class" class="form-control n4" placeholder="Class" required>
<button class="w-100 btn btn-lg btn-primary" type="submit">Register</button>
<p class="mt-5 mb-3 text-muted">© Nakul Sir Tution Classes</p>
</form>
</main>
</body>
</html>