20 lines
No EOL
780 B
PHP
20 lines
No EOL
780 B
PHP
<?php $this->layout('template')?>
|
|
|
|
<h3>Add video</h3>
|
|
|
|
<form method="post" class="w3-container">
|
|
<label class="w3-text-teal">Video URL</label>
|
|
<input type="text" name="videoUrl" class="w3-input w3-border w3-round" required/>
|
|
<label class="w3-text-teal">Destination path</label>
|
|
<select name="destination" class="w3-select w3-border w3-round" required>
|
|
<?php foreach ($listOfDestPath as $key => $value): ?>
|
|
<option value="<?=$key?>"><?=$value?></option>
|
|
<?php endforeach?>
|
|
</select>
|
|
<input type="submit" class="w3-button w3-teal w3-round"/>
|
|
</form>
|
|
|
|
<form class="w3-container" method="post">
|
|
<input type="hidden" name="logout" value="true"/>
|
|
<input class="w3-button w3-teal w3-round" type="submit" value="Logout">
|
|
</form>
|