-
Notifications
You must be signed in to change notification settings - Fork 4
/
import_student.php
executable file
·27 lines (27 loc) · 1.11 KB
/
import_student.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
<?php include_once('header.php'); ?>
<div class="page_content">
<div class="container-fluid">
<div class="row">
<div class="hidden-xs col-sm-1 col-md-2 col-lg-2"> </div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<form action="import.php" method="post" enctype="multipart/form-data">
<center>
<div class="form-group row">
<label class="text-center col-sm-12 form-control-label">Please Upload a Valid .CSV File. Download Sample here.
<p> </p>
</label>
</div>
<div class="form-group row">
<input type="file" name="Student-Data-CSV" id="Student-Data-CSV" placeholder="Upload a CSV File" required="required">
</div>
<div class="form-group row">
<input class="btn btn-success" type="submit" value="Import Student Data" name="Submit"/>
</div>
</center>
</form>
</div>
<div class="hidden-xs col-sm-1 col-md-2 col-lg-2"> </div>
</div>
</div>
</div>
<?php include_once('footer.php');