Files
web2.0-backend/infoscreen/static/html/generic_image_create.html
T
2016-10-07 13:38:03 +03:00

14 lines
516 B
HTML

<div ng-controller="infoadmin_image_create" style="margin-top:20px;">
<div>
Create new image. Enter name and select imagefile for upload
</div>
<div class="form-group">
<label>Name:</label>
<input type="text" ng-model="imagename"></input>
</div>
<div class="form-group">
<input type="file" ngf-select ng-model="img" name="file" required>
</div>
<input type="button" class="btn btn-success" ng-click="send(img);" value="create"></input>
</div>