14 lines
516 B
HTML
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>
|