-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubmit.php
More file actions
33 lines (27 loc) · 1.01 KB
/
Copy pathsubmit.php
File metadata and controls
33 lines (27 loc) · 1.01 KB
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
29
30
31
32
<?php include('config.php'); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Submit Discord Info</title>
<script src="script.js"></script>
</head>
<body>
<h1>Submit Your Information</h1>
<form action="submission.php" method="POST" id="infoForm">
<label for="discord_id">Discord User ID (required):</label>
<input type="text" name="discord_id" required><br>
<label for="steam_id">Steam ID (optional):</label>
<input type="text" name="steam_id"><br>
<label for="console_id">Console ID (optional):</label>
<input type="text" name="console_id"><br>
<label for="reason">Reason (required):</label>
<textarea name="reason" required></textarea><br>
<label for="captcha">Captcha:</label>
<img src="captcha.php" alt="captcha">
<input type="text" name="captcha" required><br>
<button type="submit">Submit</button>
</form>
<p><a href=index.php>Return to main page</a></p>
</body>
</html>