-
Notifications
You must be signed in to change notification settings - Fork 7
/
std_course.php
57 lines (53 loc) · 1.98 KB
/
std_course.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
<?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 class="well" style="text-align: center; font-weight: bold; font-size: 35px;">
|STUDENT COURSE|
</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>Program</label>
<select class="form-control">
<option>Fsc-Pre medical</option>
<option>Fsc-Pre engineering</option>
<option>ICS</option>
<option>Semester</option>
</select>
</div>
<div class="col-md-4">
<label>Course code</label>
<input type="number" class="form-control" name="course_code" placeholder="Enter course code">
</div>
<div class="col-md-4">
<label>Course Name</label>
<input type="text" class="form-control" name="course_name" placeholder="Enter course name">
</div>
</div>
<!--row 1 closed-->
<div class="row">
<div class="col-md-4">
<label>Credit Hours</label>
<select class="form-control">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>
</div>
</div>
<!--row 2 closed-->
</div>
</div>
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<?php include_once 'footer.php'; ?>