-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (59 loc) · 3.32 KB
/
index.html
File metadata and controls
66 lines (59 loc) · 3.32 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
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
<!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">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css">
<link rel="stylesheet" href="style.css">
<title>Student Enrolment</title>
</head>
<body class="bg-color">
<section class="container mt-5">
<div class="row justify-content-md-center">
<form onsubmit="return false;" class="col-md-6 col-sm-12 bg-white p-5 rounded shadow">
<div class="col-12 text-center">
<h3 class="text-primary mb-3"><strong>Student Enrolment form</strong></h3>
</div>
<div class="mb-3">
<label for="roll" class="form-label">Roll Number</label>
<input name="roll" type="number" class="form-control" id="roll" onchange="findRoll(this)" required>
</div>
<div class="mb-3">
<label for="name" class="form-label">Full Name</label>
<input name="name" type="text" class="form-control" id="name" required>
</div>
<div class="mb-3">
<label for="cls" class="form-label">Class</label>
<input name="class" type="number" class="form-control" id="cls" required>
</div>
<div class="mb-3">
<label for="dob" class="form-label">Birth Date</label>
<input name="dob" type="date" class="form-control" id="dob" required>
</div>
<div class="mb-3">
<label for="addr" class="form-label">Address</label>
<input name="addr" type="text" class="form-control" id="addr" required>
</div>
<div class="mb-3">
<label for="doe" class="form-label">Enrollment Date</label>
<input name="doe" type="date" class="form-control" id="doe" required>
</div>
<br>
<div class="d-flex justify-content-around mb-3">
<button type="button" onclick="saveData()" id="save" class="btn btn-primary btn-rounded">Save</button>
<button type="button" onclick="updateData()" id="update" class="btn btn-primary btn-rounded">Update</button>
<button type="button" onclick="disableAll()" id="reset" class="btn btn-primary btn-rounded">Reset</button>
</div>
</form>
<div class="footer">
<p>Created By Prajakta Kudale</p>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>