ACC SHELL

Path : /www/hosting/oltv.cz/_/
File Upload :
Current File : /www/hosting/oltv.cz/_/nahraj-video.php

<?php
require_once "include/config.php";
$detect = new Mobile_Detect;
if ($detect->isMobile()) {
  redirect('/nahraj-video-mobile.php');
}
if (isset($_GET['page'])) { $stranka = intval($_GET['page']); }
else { $stranka = 1; }
$showdalsi = 1;
$page = new page("Nahraj video");
include "inc/head.inc";
include "inc/header.inc";
include "inc/right.inc";
?>
	<div id="left">
    <h1>Vložit nové video</h1>
    <form action="/login-upload.php" method="post" id="registrace" enctype="multipart/form-data">
      <table cellspacing="0" cellpadding="0" border="0" width="100%">
        <tr>
          <th><strong>Titulek videopříspěvku</strong><br />(min. 20 znaků)</th>
          <td width="380"><input type="text" class="kulate" value="" name="nazev" required="required" /></td>
        </tr>
        <tr>
          <th><strong>Doprovodný text</strong><br>(min. 10 znaků)</th>
          <td><textarea name="detail" class="kulate" pattern=".{10,}"></textarea></td>
        </tr>
        <tr>
          <th><strong>Soubor k uploadu</strong><br /></th>
          <td><input type="file" class="kulate" value="" name="file" required="required" /></td>
        </tr>
      </table>
      <br>
      <input type="submit" class="submit kulate" value="nahrát video &raquo;" />
      <br /><br />
      <br /><br />
    </form>
	</div>
   <div class="clear"></div>
<?php
include "inc/bottom.inc";
include "inc/footer.inc";

ACC SHELL 2018