Game-Jaming/Frontend/group.php

37 lines
942 B
PHP
Raw Normal View History

2021-03-05 09:52:42 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form action="../Backend/keyWordsRemaining.php" method="POST">
<input type="text" name="key_word" placeholder="key word">
<input type="submit" name="submitKeyWord" value="Submit">
</form>
2021-03-08 12:01:47 +00:00
<hr>
2021-03-08 13:52:34 +00:00
<form action="../Backend/Controllers/FileHandler/upload.php" method="POST" id="uploadGame" enctype="multipart/form-data">
2021-03-08 12:01:47 +00:00
<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" placeholder="Upload dit spil"><br><br>
<label for="web">Er spillet web based</label>
2021-03-08 13:52:34 +00:00
<input type="checkbox" id="web" name="isWebBased" value="1"><br><br>
2021-03-08 12:01:47 +00:00
<input type="submit" name="submitUpload" value="Submit">
</form>
2021-03-05 09:52:42 +00:00
</body>
</html>