Skip to content

Commit

Permalink
Fix #36
Browse files Browse the repository at this point in the history
  • Loading branch information
vmdude committed Feb 29, 2016
1 parent 5ea9542 commit 37ba30f
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions var/www/admin/updater.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,19 @@
<form action="updater.php" method="post" enctype="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="500000"/>
<div class="alert alert-warning" role="warning">
<div class="row">
<div class="col-sm-3"><h4 id="uploadCase"><span class="glyphicon glyphicon-upload" aria-hidden="true"></span><span class="sr-only">Warning:</span> Select file to upload &gt;&gt;&gt;</h4></div>
<div class="col-sm-6"><input type="file" name="fileToUpload" id="fileToUpload"></div>
<div class="col-sm-3"><button name="submit" class="btn btn-warning btn-xs" value="uploading">Upload Package</button></div>
</div>
</div>
<div class="row">
<div class="col-sm-2" style="margin-top: 7px;"><h4 id="uploadCase"><span class="glyphicon glyphicon-file" aria-hidden="true"></span><span class="sr-only">Warning:</span> Select file to upload</h4></div>
<div class="col-sm-8">
<div class="input-group">
<span class="input-group-btn">
<span class="btn btn-warning btn-file">Browse&hellip; <input type="file" name="fileToUpload" id="fileToUpload"></span>
</span>
<input type="text" class="form-control" readonly>
</div>
</div>
<div class="col-sm-2 text-right"><button name="submit" class="btn btn-warning" value="uploading" style="width:196px"><i class="glyphicon glyphicon-upload"></i> Upload Package</button></div>
</div>
</div>
</form>
<?php
if ($handle = opendir($dir)) {
Expand Down

0 comments on commit 37ba30f

Please sign in to comment.