Test
This commit is contained in:
commit
c8314a0089
2 changed files with 21 additions and 8 deletions
|
@ -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>
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
<?php
|
||||
phpinfo();
|
||||
?>
|
Loading…
Add table
Reference in a new issue