-
Notifications
You must be signed in to change notification settings - Fork 2
/
add_students.php
138 lines (126 loc) · 4.04 KB
/
add_students.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
<?php
include_once 'std_div.php';
?>
<div class="container">
<div class="card card-register mx-auto mt-5">
<div class="card-header">
Add Students
</div>
<div class="card-body">
<form id="form" name="contact" action="">
<fieldset class="scheduler-border">
<legend class="scheduler-border"> Basic Info </legend>
<div class="form-row">
<div class="col-md-6">
<label for="Gr No">Gr No :</label>
<input type="text" placehoder="" class="form-control" name="gr_no">
</div>
<div class="col-md-6">
<label for="House">House :</label>
<input type="text" placehoder="" class="form-control" name="house">
</div>
<div class="col-md-6">
<label for="Roll no.">Roll no.:</label>
<input type="text" placehoder="" class="form-control" name="roll_no">
</div>
<div class="col-md-6">
<label for="School UID">School UID :</label>
<input type="text" placehoder="" class="form-control" name="school_uid">
</div>
<div class="col-md-6">
<label>STD</label>
<?php echo $std; ?>
</div>
<div class="col-md-6">
<label>DIV</label>
<?php echo $select_div; ?>
</div>
</div>
</fieldset>
<fieldset class="scheduler-border">
<legend class="scheduler-border"> Personal Info </legend>
<div class="form-row">
<div class="col-md-6">
<label for="Surname:">Surname:</label>
<input type="text" placehoder="" class="form-control" name="surname">
</div>
<div class="col-md-6">
<label for="First Name">First Name :</label>
<input type="text" placehoder="" class="form-control" name="first_name">
</div>
<div class="col-md-6">
<label for="Father's Name">Father's Name :</label>
<input type="text" placehoder="" class="form-control" name="fathers_name">
</div>
<div class="col-md-6">
<label for="mother's Name">Mother's Name :</label>
<input type="text" placehoder="" class="form-control" name="mothers_name">
</div>
</div>
</fieldset>
<fieldset class="scheduler-border">
<legend class="scheduler-border"> Other Info </legend>
<div class="form-row">
<div class="col-md-6">
<label for="DOB">DOB :</label>
<input type="text" placehoder="" class="form-control" name="dob">
</div>
<div class="col-md-6">
<label for="Religion">Religion :</label>
<input type="text" placehoder="" class="form-control" name="religion">
</div>
</div>
<div class="form-row">
<div class="col-md-6">
<label for="Caste">Caste :</label>
<input type="text" placehoder="" class="form-control" name="caste">
</div>
<div class="col-md-6">
<label for="Category">Category :</label>
<input type="text" placehoder="" class="form-control" name="category">
</div>
</div>
<div class="form-row">
<div class="col-md-6">
<label for="Blood Group">Blood Group :</label>
<input type="text" placehoder="" class="form-control" name="blood_group">
</div>
<div class="col-md-6">
<label for="Adhar Card No">Adhar Card No. :</label>
<input type="text" placehoder="" class="form-control" name="adharcard_no">
</div>
</div>
</fieldset>
<fieldset class="scheduler-border">
<legend class="scheduler-border"> Contact Info </legend>
<div class="form-row">
<div class="col-md-6">
<label for="Contact No.">Contact No.(SMS) :</label>
<input type="text" placehoder="" class="form-control" name="sms_contact_no">
</div>
<div class="col-md-6">
<label for="Contact No.">Contact No.(Optional) :</label>
<input type="text" placehoder="" class="form-control" name="gen_contact_no">
</div>
</div>
<div class="form-row">
<label for="Address">Address :</label>
<textarea type="text" placehoder="" class="form-control" name="address"></textarea>
</div>
</fieldset>
<input type="hidden" name="q" value="s">
<br>
<input type="submit" name="sub" id="submit" class="btn btn-primary btn-block" href="login.html"
value="Add">
</form>
</div>
</div>
</div>
<br>
<!--
<div class="form-row">
<la
bel for="exampleInputName">UID</
label>
<input class="form-control" id="exampleInputName" type="text" aria-describedby="nameHelp" name="uid" placeholder="UID">
</div> -->