Game-Jaming/Frontend/group.php

44 lines
1.3 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form action="../Backend/Controllers/keyWord/keyWordsRemaining.php" method="POST">
<input type="text" name="key_word" placeholder="key word">
<input type="submit" name="submitKeyWord" value="Submit">
</form>
<hr>
<form action="../Backend/Controllers/FileHandler/upload.php" method="POST" id="uploadGame" enctype="multipart/form-data">
<input type="text" name="gameTitle" placeholder="Title på spillet"><br><br>
<input type="text" name="description" placeholder="Beskrivelse"><br><br>
<label for="uploadGame">Upload spil [.zip]</label>
<input type="file" name="gameFile" id="uploadGame" placeholder="Upload dit spil"><br><br>
<label for="uploadthumbnail">Upload thumbnail [GIF, JPEG, PNG, SVG]</label>
<input type="file" name="thumbnailFile" id="uploadthumbnail" placeholder="Upload en thumbnail"><br><br>
<label for="web">Er spillet web based</label>
<input type="checkbox" id="web" name="isWebBased" value="1"><br><br>
<input type="submit" name="submitUpload" value="Submit">
</form>
<hr>
<form action="updateGameJam.php" method="POST">
<input type="submit" value="Gå til Opdater" name="updateGamJam" id="pog" />
</form>
</body>
</html>