-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstudent_detail.php
383 lines (289 loc) · 21.3 KB
/
student_detail.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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
<?php include("conecton.php"); ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>GNDPC | Dashboard</title>
<?php include('tags.php'); ?>
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
<!-- Bootstrap 3.3.2 -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<!-- Font Awesome Icons -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<!-- Ionicons -->
<link href="http://code.ionicframework.com/ionicons/2.0.0/css/ionicons.min.css" rel="stylesheet" type="text/css" />
<!-- Theme style -->
<link href="dist/css/AdminLTE.min.css" rel="stylesheet" type="text/css" />
<!-- AdminLTE Skins. Choose a skin from the css/skins
folder instead of downloading all of them to reduce the load. -->
<link href="dist/css/skins/_all-skins.min.css" rel="stylesheet" type="text/css" />
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body class="skin-blue">
<!-- Site wrapper -->
<div class="wrapper">
<?php include('header.php'); ?>
<?php include('sidebar.php'); ?>
<!-- =============================================== -->
<!-- Right side column. Contains the navbar and content of the page -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Blank page
<small>it all starts here</small>
</h1>
<ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
<li><a href="#">Examples</a></li>
<li class="active">Blank page</li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<!-- Default box -->
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">Student Data</h3>
<div class="box-tools pull-right">
<button type="button" class="btn btn-box-tool" data-widget="collapse" data-toggle="tooltip"
title="Collapse">
<i class="fa fa-minus"></i></button>
</div>
</div>
<div class="box-body">
<div class="content">
<div class="container-fluid">
<div class="row">
<div class="col-md-8">
<div class="card">
<div class="card-header" data-background-color="purple">
<h1 class="title">Student Details</h1>
<!-- <p class="category">Complete profile</p> -->
</div>
<div class="card-content">
<form method="POST" enctype="multipart/form-data" >
<div class="row">
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">User Name</label>
<input type="text" placeholder="User Name" name="username" required class="form-control" />
</div>
</div>
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">University Roll No</label>
<input type="number" placeholder="University Roll No" name="un_roll" required class="form-control" />
</div>
</div>
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">Name</label>
<input type="text" placeholder="Enter your Name" name="name" required class="form-control" />
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">Father Name</label>
<input type="text" placeholder="Father Name" name="f_name" required class="form-control" />
</div>
</div>
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">Mother Name</label>
<input type="text" placeholder="Mother Name" name="m_name" required class="form-control" />
</div>
</div>
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">Class</label>
<input type="text" placeholder="Class" name="class" required class="form-control" />
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">Batch</label>
<input type="number" placeholder="Batch" name="batch" required class="form-control" />
</div>
</div>
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">Gender</label> <br>
<label>
<input type="radio" name="Gender" class="minimal" checked value="Male"> Male
</label>
<label>
<input type="radio" name="Gender" class="minimal" value="Female"> Female
</label>
<label>
<input type="radio" name="Gender" class="minimal" value="Other"> Other
</label>
</div>
</div>
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">Date of Birth</label>
<input type="date" placeholder="Enter of Date of Birth" name="dob" required class="form-control" />
</div>
</div>
</div>
<!-- <div class="row">
<div class="col-md-6">
<div class="form-group label-floating">
<label class="control-label">Fist Name</label>
<input type="text" class="form-control">
</div>
</div>
<div class="col-md-6">
<div class="form-group label-floating">
<label class="control-label">Last Name</label>
<input type="text" class="form-control">
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="form-group label-floating">
<label class="control-label">Adress</label>
<input type="text" class="form-control">
</div>
</div>
</div> -->
<div class="row">
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">Department</label>
<select class="form-control" required name="department" >
<option value="61">Computer Science Engg</option>
<option value="62">Information Technology</option>
<option value="63"> Civil Engg</option>
<option value="64">Auto Mobile Engg</option>
<option value="65">Electronic and Comm Engg</option>
<option value="66">Electrical Engg</option>
<option value="67">Production Engg</option>
</select>
</div>
</div>
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">Category</label>
<select class="form-control" required name="category" >
<option value="general">General</option>
<option value="sc">SC</option>
<option value="obc"> OBC</option>
<option value="bc">BC</option>
</select>
</div>
</div>
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">Religion</label>
<select class="form-control" required name="religion" >
<option value="Hindu">Hindu</option>
<option value="Muslim">Muslim</option>
<option value="Sikh"> Sikh</option>
<option value="other">Other</option>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">10th Marks Percentage</label>
<input type="number" placeholder="Enter your 10th Marks Percentage" name="10th_per" required class="form-control" />
</div>
</div>
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">12th Marks Percentage</label>
<input type="number" placeholder="Enter your 12th Marks Percentage" name="12th_per" required class="form-control" />
</div>
</div>
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">Blood Group</label>
<select class="form-control" required name="blood_group" >
<option value="A+">A+</option>
<option value="A-">A-</option>
<option value="B+"> B+</option>
<option value="B-">B-</option>
<option value="AB+">AB+</option>
<option value="AB-">AB-</option>
<option value="O+">O+</option>
<option value="O-">O-</option>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">Phone No</label>
<input type="number" placeholder="Enter your Number" name="phone" required class="form-control" />
</div>
</div>
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">Email ID</label>
<input type="email" placeholder="Enter your Email ID" name="email" required class="form-control" />
</div>
</div>
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">Address</label>
<input type="text" placeholder="Enter your Address" name="address" required class="form-control" />
</div>
</div>
</div> </div>
<div class="row">
<div class="col-md-4">
<div class="form-group label-floating">
<label class="control-label">Image</label>
<input type='file' onchange="readURL(this);" name='image' required accept="image/x-png,image/gif,image/jpeg" class="form-control" />
</div>
</div>
</div>
<button type="submit" class="btn btn-primary pull-right" name="Submit">Submit</button>
<div class="clearfix"></div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /.box-body -->
<div class="box-footer">
Footer
</div>
<!-- /.box-footer-->
</div>
<!-- /.box -->
</section>
<!-- /.content -->
</div><!-- /.content-wrapper -->
<?php include("footer.php"); ?>
</div><!-- ./wrapper -->
<!-- jQuery 2.1.3 -->
<script src="plugins/jQuery/jQuery-2.1.3.min.js"></script>
<!-- Bootstrap 3.3.2 JS -->
<script src="bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<!-- SlimScroll -->
<script src="plugins/slimScroll/jquery.slimScroll.min.js" type="text/javascript"></script>
<!-- FastClick -->
<script src='../../plugins/fastclick/fastclick.min.js'></script>
<!-- AdminLTE App -->
<script src="dist/js/app.min.js" type="text/javascript"></script>
</body>
</html>