forked from TheGamesDB/TheGamesDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tab_addpub.php
28 lines (20 loc) · 1.02 KB
/
tab_addpub.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php if ($adminuserlevel == 'ADMINISTRATOR') { ?>
<div id="gameHead">
<?php if($errormessage): ?>
<div class="error"><?= $errormessage ?></div>
<?php endif; ?>
<?php if($message): ?>
<div class="message"><?= $message ?></div>
<?php endif; ?>
<h2>Add Publisher/Developer Keywords & Logo</h2>
<p> </p>
<p>Here you can add the keywords and logo for a new publisher/developer. Separate keywords with a comma.</p>
<p> </p>
<form method="post" action="<?= $baseurl ?>/admincp/?cptab=pubdev" enctype="multipart/form-data" style="text-align: center; width: 700px; margin: auto; background-color: #555555; border: 1px solid #999; border-radius: 6px;">
<input type="hidden" name="function" value="Add New Publisher" />
<p>Publisher/Developer Keywords: <input type="text" name="publisherKeywords" value="<?= $publisherResult->keywords ?>" /></p>
<p>Publisher/Developer Logo: <input type="file" name="publisherlogo" /></p>
<p><input type="submit" />
</form>
</div>
<?php } ?>