forked from chiragmaniar/php_website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass_room.php
More file actions
74 lines (56 loc) · 2.62 KB
/
class_room.php
File metadata and controls
74 lines (56 loc) · 2.62 KB
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
<?php include_once('head.php'); ?>
<?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>
Classroom
<small>Preview</small>
</h1>
<ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
<li class="active">Classroom</li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<!-- left column -->
<div class="col-md-6">
<!-- general form elements -->
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">Add Classroom</h3>
</div><!-- /.box-header -->
<!-- form start -->
<form role="form" action="index.php" method="post">
<div class="box-body">
<div class="form-group">
<label for="exampleInputEmail1">Name</label>
<input type="text" class="form-control" id="exampleInputEmail1" placeholder="Enter classroom name" name="name">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Student Count</label>
<input type="text" class="form-control" id="exampleInputPassword1" placeholder="Enter student count" name="student_count">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Hall Charge</label>
<input type="text" class="form-control" id="exampleInputPassword1" placeholder="Enter hall charge" name="hall_charge">
</div>
</div><!-- /.box-body -->
<div class="box-footer">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</form>
</div>
</div>
</div>
</section><!-- End of form section tag -->
</div>
<!-- jQuery 2.1.4 -->
<script src="plugins/jQuery/jQuery-2.1.4.min.js"></script>
<!-- AdminLTE App -->
<script src="dist/js/app.min.js"></script>
<?php include_once('footer.php'); ?>