bec498bfee
Closes issues #5 #7
14 lines
506 B
HTML
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>
|