-
Notifications
You must be signed in to change notification settings - Fork 7
/
teacher_reg.php
73 lines (66 loc) · 2.89 KB
/
teacher_reg.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
<?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;">
|TEACHER 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>Teacher Name</label>
<input type="number" class="form-control" name="tech_name" placeholder="Enter teacher name">
</div>
<div class="col-md-4">
<label>Cell No.</label>
<input type="number" class="form-control" name="tech_no" placeholder="Enter cell number">
</div>
<div class="col-md-4">
<label>Address</label>
<input type="text" class="form-control" name="tech_address" placeholder="Enter address">
</div>
</div>
<!--row 1 closed-->
<div class="row">
<div class="col-md-4">
<label>Teacher CNIC</label>
<input type="number" class="form-control" name="tech_cnic" placeholder="Enter cnic">
</div>
<div class="col-md-4">
<label>E-Mail</label>
<input type="email" class="form-control" name="tech_email" placeholder="Enter email">
</div>
<div class="col-md-4">
<label>Age</label>
<input type="number" class="form-control" name="tech_age" placeholder="Enter age">
</div>
</div>
<!--row 2 closed-->
<div class="row">
<div class="col-md-4">
<label>Teacher Qualification</label>
<input type="text" class="form-control" name="tech_qualification" placeholder="Enter qualification">
</div>
<div class="col-md-4">
<label>Teacher DOB</label>
<input type="number" class="form-control" name="tech_dob" placeholder="Enter date of birth">
</div>
<div class="col-md-4">
<label>Age</label>
<input type="number" class="form-control" name="tech_age" placeholder="Enter age">
</div>
</div>
<!--row 2 closed-->
</div>
</div>
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<?php include_once 'footer.php'; ?>