-
Notifications
You must be signed in to change notification settings - Fork 0
/
mentor.html
54 lines (52 loc) · 1.91 KB
/
mentor.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
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Updation form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main">
<div class="inner">
<div class="welcome">
New Batch Registration
</div>
<div class="registration_options">
<form action="" method="post">
<div class="rleft_body">
<label for="">
Class Name :
</label>
<br>
<label for="">
Section :
</label>
<br>
<label for="">
Academic year :
</label>
<br>
<label for="">
No. of students :
</label>
</div>
<div class="rright_body">
<input type="text" name="class name" id="">
<br><br>
<input type="text" name="Section" id="">
<br><br>
<input type="text"academic year" id="">
<br><br>
<input type="text" name="no. of students" id="">
</div>
<div class="registration_submit">
<input href="reg.html" type="submit" value="submit" id="submit" name="button">
</div>
</form>
</div>
</div>
</div>
</body>
</html>