Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.37 KB | None | 0 0
  1. <?php
  2. error_reporting(0);
  3. require_once "../maincore.php";
  4. $custom_name = 'Modification Center file uploader - CFGFactory';
  5. require_once "../subheader.php";
  6. require_once "../side_left.php";
  7. ?>
  8. <center>
  9. <h2 style="font-family: Trebuchet MS,Tahoma,Arial,Sans-serif; color: black; font-size: 18px; padding: 1px;" class="dif">Upload your Gaming CFG here :)<span style="color: red;">*</span></h2>
  10. <h2 style="font-family: Trebuchet MS,Tahoma,Arial,Sans-serif; color: black; font-size: 18px; padding: 1px;" class="dif">Step 1 - Choose a file to upload(rar,zip)<span style="color: red;">*</span></h2>
  11.  
  12.  
  13. <form action="file.php" method="post" enctype="multipart/form-data">
  14.  
  15. <input style="font-size: 15px;" type="file" name="file" id="file" />
  16. <br />
  17. <h2 style="font-family: Trebuchet MS,Tahoma,Arial,Sans-serif; color: black; font-size: 18px; padding: 1px;" class="dif">Step 2 - Add some screenshots so we can know what we download.(jpg,png,gif)</h2>
  18. <span style="font-size: 13px;">File Description (HTML is ON):<span style="color: green;">*</span></span><br/>
  19. <textarea name="desc" rows="10" cols="35"></textarea><br/><br/>
  20. <span style="font-size: 13px;">Screenshot 1<span style="color: red;">*</span></span><input style="font-size: 15px;" type="file" name="ss" id="ss" /><br/><br/>
  21. <span style="font-size: 13px;">Screenshot 2<span style="color: red;">*</span></span><input style="font-size: 15px;" type="file" name="ss2" id="ss2" /><br/><br/>
  22. <span style="font-size: 13px;">Screenshot 3<span style="color: green;">*</span></span><input style="font-size: 15px;" type="file" name="ss3" id="ss3" /><br/><br/>
  23. <span style="font-size: 13px;">Screenshot 4<span style="color: green;">*</span></span><input style="font-size: 15px;" type="file" name="ss4" id="ss4" /><br/>
  24.  
  25. <h2 style="font-family: Trebuchet MS,Tahoma,Arial,Sans-serif; color: black; font-size: 18px; padding: 1px;" class="dif">Step 3 - Add informations about the file.<span style="color: red;">*</span></h2>
  26. <table><td align="right">
  27. <span style="font-size: 13px;">Title:<span style="color: red;">*</span></span><input style="font-size: 13px;padding: 2px;" type="text" name="name" size="35"><br/><br/>
  28. <span style="font-size: 13px;">Author:<span style="color: green;">*</span></span><input style="padding: 2px;" type="text" name="author" size="35"><br/><br/>
  29. <span style="font-size: 13px;">Your nickname:<span style="color: red;">*</span></span><input value="<?php echo $userdata['user_name']; ?>" style="padding: 2px;" type="text" name="added" size="35"><br/><br/>
  30. <span style="font-size: 13px;">Copyright:<span style="color: green;">*</span></span> <input style="padding: 2px;" value="" type="text" name="website" size="35"><br/><br/>
  31. <span style="font-size: 13px;">CoD 2/4/5: <span style="color: red;">*</span></span><input style="padding: 2px;" value="4" type="text" name="game" size="5"><br/><br/>
  32. <span style="font-size: 13px;">Type: <span style="color: red;">*</span></span> <?php echo "<select name=\"weapons\">\n
  33. <option value=\"34\">COD4 - CFG</option>\n
  34. </select>\n"; ?>
  35. <br/><center><br/>
  36. <span style="color: red;font-size: 20px;">* - Required</span><br/>
  37. <span style="color: green;font-size: 20px;">* - Not required but welcome</span>
  38. <br/><br/><br/><input style="font-size: 23px;color: black;" type="submit" value="Upload file !"></center>
  39. </form></table></td>
  40.  
  41.  
  42. <?php
  43. require_once "../side_right.php";
  44. require_once "../footer.php";
  45. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement