2020-06-07 19:04:43 +03:00
|
|
|
{extends "../@layout.xml"}
|
2020-07-13 06:55:45 +03:00
|
|
|
{block title}{_"upload_video"}{/block}
|
2020-06-07 19:04:43 +03:00
|
|
|
|
|
|
|
{block header}
|
|
|
|
<a href="{$thisUser->getURL()}">{$thisUser->getCanonicalName()}</a>
|
|
|
|
»
|
|
|
|
<a href="/videos{$thisUser->getId()}">{_"videos"}</a>
|
|
|
|
»
|
|
|
|
{_"upload_video"}
|
|
|
|
{/block}
|
|
|
|
|
|
|
|
{block content}
|
2020-07-13 06:55:45 +03:00
|
|
|
<div class="container_gray">
|
|
|
|
<h4>{_"upload_video"}</h4>
|
2020-06-07 19:04:43 +03:00
|
|
|
<form method="post" enctype="multipart/form-data">
|
2020-07-13 06:55:45 +03:00
|
|
|
<table cellspacing="7" cellpadding="0" width="60%" border="0" align="center">
|
2020-06-07 19:04:43 +03:00
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td width="120" valign="top"><span class="nobold">{_"name"}:</span></td>
|
|
|
|
<td><input type="text" name="name" /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td width="120" valign="top"><span class="nobold">{_"description"}:</span></td>
|
2020-07-13 06:55:45 +03:00
|
|
|
<td><textarea name="desc"></textarea></td>
|
2020-06-07 19:04:43 +03:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td width="120" valign="top"><span class="nobold">{_"video"}:</span></td>
|
|
|
|
<td><input type="file" name="blob" accept="video/*" /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td width="120" valign="top"><span class="nobold">{_"video_link_to_yt"}:</span></td>
|
|
|
|
<td><input type="text" name="link" placeholder="https://www.youtube.com/watch?v=9FWSRQEqhKE" /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td width="120" valign="top"></td>
|
|
|
|
<td>
|
|
|
|
<input type="hidden" name="hash" value="{$csrfToken}" />
|
|
|
|
<input type="submit" class="button" name="submit" value="{_"upload_button"}" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</form>
|
2020-07-13 06:55:45 +03:00
|
|
|
</div>
|
2020-06-07 19:04:43 +03:00
|
|
|
{/block}
|