This commit is contained in:
manzerbredes 2016-03-16 15:38:43 +01:00
commit c8314a0089
2 changed files with 21 additions and 8 deletions

View file

@ -1,17 +1,27 @@
<div class="panel panel-default" ng-controller="imageCtrl">
<div class="panel-heading">
Images disponibles
Image Manager
</div>
<div class="panel-body">
<div ng-repeat="image in images">
{{image.name}}
</div>
<br />
<input name="myFile" type="file" />
<br />
<button type="button" ng-click="doUpload()" class="btn btn-primary">Upload</button>
<table class="table table-hover">
<thead>
<tr>
<th>Name</th>
<th>Size</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="image in images">
<td>{{ image.name }}</td>
<td>000</td>
<td>actions</td>
</tr>
</tbody>
</table>
</div>
</div>

View file

@ -0,0 +1,3 @@
<?php
phpinfo();
?>