-
Notifications
You must be signed in to change notification settings - Fork 1
/
enroll_student.php
113 lines (101 loc) · 4.45 KB
/
enroll_student.php
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?php
include 'session.php';
?>
<!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">
<title>Enrol_stu</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="enrol.css">
<!-- <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> -->
<body>
<nav class="navbar navbar-expand-lg bg-dark navbar-dark" style="color: white;">
<div class="navbar-header">
<a class="navbar-brand" href="pagalpanti.php">Srank Portal</a>
</div>
<ul class="navbar-nav" style= "padding-left: 50px;">
<li class="nav-item active">
<a class="nav-link" href="pagalpanti.php">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="ABOUTUS.HTML">About</a>
</li>
</ul>
<ul class="nav-item navbar-nav navbar-right" style="color:white; margin-left:800px; background-color: black;">
<li id="lk"><a href="login.php"><span class="glyphicon glyphicon-log-out"></span> Logout</a></li>
</ul>
</nav>
<div class="cotainer">
<div class="t_name">
<h3>
<?php
echo "WELCOME". $_SESSION["tname"];
?>
</h3>
</div>
<div class="row rooo">
<div class="col-4 offset-1" id="enrol">
<form class="form-group" action="registerfor_student.php" method="POST" id="newen" >
<div class="row">
<h5 id="t">
New Enrollment
</h5>
</div>
<div class="roll">
<label for="ID">ID:</label>
<input type="text" class="form-control" name="SID" placeholder="Student ID" required>
</div>
<div class="roll">
<label for="First name">First Name:</label>
<input type="text" class="form-control" name="F_name" placeholder="First name" required>
</div>
<div class="roll">
<label for="Last name">Last Name:</label>
<input type="text" class="form-control" name="L_name" placeholder="last name(Optional)">
</div>
<div class="roll">
<label for="First name">Branch</label>
<input type="text" class="form-control" name="branch" placeholder="Branch" required>
</div>
<div class="roll">
<label for="section">Section</label>
<input type="text" class="form-control" name="section" placeholder="Section" required>
</div>
<div class="roll">
<label for="tname">Mentor:</label>
<input type="text" class="form-control" name="tname" autocomplete="" placeholder="Mentor Name">
</div>
<button type="submit" class="btn-sm">Enroll</button>
</form>
</div>
<div class="col-4 offset-2" id="bod">
<div class="row">
<h3 id="b_head">
Branch Exist
</h3>
</div>
<hr>
<div class="row" id="cs">
<h4><a href="cse.php">Computer Science Engineering(CSE)</a></h4>
</div>
<div class="row" id="it">
<h4><a href="it.php">Information Tchnology</a></h4>
</div>
<div class="row" id="ec">
<h4><a href="ec.php">Electronic Engineering</a></h4>
</div>
<div class="row" id="me">
<h4><a href="me.php">Mechanical Engineering</a></h4>
</div>
<div class="row" id="civil">
<h4><a href="civil.php">Civil Engineering</a></h4>
</div>
</div>
</div>
</div>
</body>
</html>