Files
web2.0-backend/infoscreen/static/infoscreen/html/generic_video_create.html
T
2018-01-28 20:23:56 +02:00

14 lines
527 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" class="form-control" 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>