Files
web2.0-backend/infoscreen/static/html/generic_video_create.html
T
Joel Lavikainen bec498bfee Complete infoscreen video support
Closes issues #5 #7
2017-05-24 16:44:59 +03:00

14 lines
506 B
HTML

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