-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathUpdateData.php
92 lines (54 loc) · 3.58 KB
/
UpdateData.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
<?php
include('header.php');
?>
<section id="main-content">
<section class="wrapper">
<!--main content start-->
<!-- HERE IS WHERE IS NECESSARY TO INCLUDE THE CONTENT -->
<!-- Update User -->
<div class="uploadCSVbox">
<div class="Title"> <h3 class="hrUpdateCSV">Update Student - Choose a csv file</h3></div>
<div class="containerForm">
<div class="lineForm">
<div class="line1Form"><input id="fileToUpload" type="file" /></div>
<div class="line2Form"><input type="button" id="updateStudentBtn" value="Update"></div>
</div><!-- end lineForm -->
<div class="progress" id="contProgressBar">
<div class="progress-bar progress-bar-striped" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100">
<p id="perecentageBar"></p>
</div>
</div>
</div><!-- end containerForm -->
</div><!-- end uploadCSVbox -->
<!--main content end-->
</section>
</section>
<!-- /////////////////////////////////////////////////// -->
<!-------------- MODAL WINDOWS TO DISPLAY MESSAGES ------>
<!-- /////////////////////////////////////////////////// -->
<!-- Modal Windows to display messages -->
<div aria-hidden="true" aria-labelledby="myModalLabel" role="dialog" tabindex="-1" id="myModal3" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Wizard Alert</h4>
<a data-toggle="modal" id="modalExpiration" href="login.html#myModal3"></a>
</div>
<div class="modal-body" id="bodyAlertMessageBox">
<h4 class="modal-dialog" id="boxMessageModal"></h4>
</div>
<div class="modal-footer" id="footerModalSessionExpired">
<button data-dismiss="modal" class="btn btn-default" type="button" id="BtnExpirationModal">OK</button>
</div>
</div>
</div>
</div>
<!-- modal -->
<!-- /////////////////////////////////////////////////// -->
<!-------------- MODAL WINDOWS TO DISPLAY LOADING ICON ------>
<!-- /////////////////////////////////////////////////// -->
<div class="modal-body" id="loading"><img src="assets/img/ajax-loader.gif" /></div>
<?php include('include.php'); ?>
<!--script for this page-->
<script src="assets/js/Wizard_Functions/UpdateData.js"></script>