-
Notifications
You must be signed in to change notification settings - Fork 7
/
gen_fsc_medi.php
289 lines (265 loc) · 12.4 KB
/
gen_fsc_medi.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<?php include_once 'header.php'; ?>
<?php include_once 'sidebar.php'; ?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1 style="text-align: center;">
<strong>Superior Group of Colleges</strong>
| Learning Management System (LMS)
</h1>
<ol class="breadcrumb">
<li><a href="index.php"><button type="submit" class="btn btn-success">Home</button></a></li>
<li><a href="annual.php"><button type="submit" class="btn btn-danger">Back</button></a></li>
</ol>
</section>
<!-- Main content -->
<section class="content container-fluid">
<h2 class="well well-sm" style="border-top:3px solid teal;">Student Record</h2>
<div class="row">
<div class="col-md-12">
<!-- Custom Tabs -->
<div class="nav-tabs-custom">
<ul class="nav nav-tabs">
<li class="active"><a href="#tab_1" data-toggle="tab">Add session</a></li>
<li><a href="#tab_2" data-toggle="tab">Student Registration</a></li>
<li><a href="#tab_3" data-toggle="tab">Fee Details</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
Dropdown <span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li role="presentation"><a role="menuitem" tabindex="-1" href="#">Action</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="#">Another action</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="#">Something else here</a></li>
<li role="presentation" class="divider"></li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="#">Separated link</a></li>
</ul>
</li>
<li class="pull-right"><a href="#" class="text-muted"><i class="fa fa-gear"></i></a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="tab_1">
<b>How to use:</b>
<p>Exactly like the original bootstrap tabs except you should use
the custom wrapper <code>.nav-tabs-custom</code> to achieve this style.</p>
A wonderful serenity has taken possession of my entire soul,
like these sweet mornings of spring which I enjoy with my whole heart.
I am alone, and feel the charm of existence in this spot,
which was created for the bliss of souls like mine. I am so happy,
my dear friend, so absorbed in the exquisite sense of mere tranquil existence,
that I neglect my talents. I should be incapable of drawing a single stroke
at the present moment; and yet I feel that I never was a greater artist than now.
</div>
<!-- /.tab-pane -->
<div class="tab-pane" id="tab_2">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1 class="well" style="text-align: center; font-weight: bold; font-size: 35px;">
|STUDENT REGISTRATION|
</h1>
</section>
<!-- Main content -->
<section class="content container-fluid">
<div class="box-body">
<div class="form-group">
<div class="row">
<div class="col-md-4">
<label>Form Number</label>
<input type="number" class="form-control" name="frm_no" placeholder="Enter Form Number">
</div>
<div class="col-md-4">
<label>Student Name</label>
<input type="text" class="form-control" name="std_name" placeholder="Enter Student Name">
</div>
<div class="col-md-4">
<label>Father Name</label>
<input type="text" class="form-control" name="f_name" placeholder="Enter Father Name">
</div>
</div>
<!--row 1 closed-->
<div class="row">
<div class="col-md-4">
<label>Phone No.</label>
<input type="number" class="form-control" name="phn_no" placeholder="Enter Phone No">
</div>
<div class="col-md-4">
<label>E-mail</label>
<input type="email" class="form-control" name="email" placeholder="Enter Email">
</div>
<div class="col-md-4">
<label>Class</label>
<input type="text" class="form-control" name="class" placeholder="Enter Class">
</div>
</div>
<!--row 2 closed-->
<div class="row">
<div class="col-md-4">
<label>Age</label>
<input type="number" class="form-control" name="age" placeholder="Enter Age">
</div>
<div class="col-md-4">
<label>CNIC</label>
<input type="number" class="form-control" name="cnic" placeholder="Enter CNIC">
</div>
<div class="col-md-4">
<label>Enrollment #</label>
<input type="number" class="form-control" name="enroll_no" placeholder="Enter Enrollment No">
</div>
</div>
<!--row 3 closed-->
<div class="row">
<div class="col-md-4">
<label>Date of Birth</label>
<input type="text" class="form-control" name="d_of_b" placeholder="Enter DOB">
</div>
<div class="col-md-4">
<label>Date of Admission</label>
<input type="text" class="form-control" name="d_of_add" placeholder="Enter DOA">
</div>
<div class="col-md-4">
<label>Fee Package</label>
<input type="number" class="form-control" name="fee_pkge" placeholder="Enter Fee Package">
</div>
</div>
<!--row 4 closed-->
<div class="row">
<div class="col-md-4">
<label>Registration Fee</label>
<input type="number" class="form-control" name="reg_fee" placeholder="Enter Registration Fee">
</div>
<div class="col-md-4">
<label>Installments</label>
<select class="form-control">
<option>Annual base</option>
<option>Semester vise</option>
</select>
</div>
<div class="col-md-4">
<label>Department</label>
<input type="text" class="form-control" name="depart" placeholder="Semester/Annual">
</div>
</div>
<!--row 5 closed-->
<div class="row">
<div class="col-md-4">
<label>Session</label>
<input type="text" class="form-control" name="sess" placeholder="From - To">
</div>
<div class="col-md-4">
<label>Address</label>
<input type="text" class="form-control" name="add" placeholder="Enter Address">
</div>
<div class="col-md-4">
<label>Gender</label>
<div class="radio">
<label>
<input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
Male
</label>
<label>
<input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">Female
</label>
</div>
</div>
</div>
<!--row 6 closed-->
<div class="row">
<div class="col-md-4">
<label>Gaurdian Name</label>
<input type="text" class="form-control" name="Gaurd_name" placeholder="Enter gaurdian name">
</div>
</div>
<!--row 7 closed-->
</div>
</div>
</section>
<!-- /.content -->
</div>
<!-- /.tab-pane -->
<div class="tab-pane" id="tab_3">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1 class="well" style="text-align: center; font-weight: bold; font-size: 35px;">
|STUDENT FEE DETAIL|
</h1>
</section>
<!-- Main content -->
<section class="content container-fluid">
<div class="box-body">
<div class="form-group">
<div class="row">
<div class="col-md-3">
<label>Registration Fee</label>
<input type="number" class="form-control" name="reg_fee" placeholder="Enter Registration Fee">
</div>
<div class="col-md-3">
<label>Student Roll #</label>
<input type="number" class="form-control" name="std_roll" placeholder="Enter Roll No">
</div>
<div class="col-md-3">
<label>Student Name</label>
<input type="text" class="form-control" name="std_name" placeholder="Enter Student Name">
</div>
<div class="col-md-3">
<label>Registration #</label>
<input type="number" class="form-control" name="reg_no" placeholder="Enter Registration No">
</div>
</div>
<!--row 1 closed-->
<div class="row">
<div class="col-md-3">
<label>Program</label>
<input type="text" class="form-control" name="prgrm" placeholder="Enter Program">
</div>
<div class="col-md-3">
<label>Session</label>
<input type="number" class="form-control" name="sessn" placeholder="Enter Session">
</div>
<div class="col-md-3">
<label>Semester</label>
<input type="number" class="form-control" name="smstr" placeholder="Enter Semester">
</div>
<div class="col-md-3">
<label>Total Fee</label>
<input type="number" class="form-control" name="total_fee" placeholder="Enter Total Fee">
</div>
</div>
<!--row 2 closed-->
<div class="row">
<div class="col-md-3">
<label>Total Number of Installment</label>
<input type="number" class="form-control" name="t_n_o_i" placeholder="Enter Installment">
</div>
<div class="col-md-3">
<label>Installment Per Amount</label>
<input type="number" class="form-control" name="i_p_a" placeholder="Enter Installment Amount">
</div>
<div class="col-md-3">
<label>Next Due Date for Installment</label>
<input type="date" class="form-control" name="n_dd_f_i" placeholder="Enter Due Date">
</div>
<div class="col-md-3">
<label>Number of Installment Remaining</label>
<input type="number" class="form-control" name="n_o_i_r" placeholder="Enter Remaining Installment">
</div>
</div>
<!--row 3 closed-->
<button style="margin: 3px;" type="button" class="btn btn-success">Submit</button>
</div>
</div>
</section>
<!-- /.content -->
</div>
<!-- /.tab-pane -->
</div>
<!-- /.tab-content -->
</div>
<!-- nav-tabs-custom -->
</div>
</div>
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<?php include_once 'footer.php'; ?>