29 lines
934 B
HTML
29 lines
934 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>POST 测试表单</title>
|
|
</head>
|
|
<body>
|
|
<h2>MediaFetcher POST 测试</h2>
|
|
<form action="https://neutrolabgames.com/LiveLoop/AppData/jmywall.php" method="post" target="_blank">
|
|
<label for="pi">pi (id):</label><br>
|
|
<input type="text" id="pi" name="pi" required><br><br>
|
|
|
|
<label for="medium">medium:</label><br>
|
|
<input type="text" id="medium" name="medium" value="5eV6snEwfY7Yv6Ub" required><br><br>
|
|
|
|
<label for="alpha">alpha (asset name):</label><br>
|
|
<input type="text" id="alpha" name="alpha"><br><br>
|
|
|
|
<label for="version">version:</label><br>
|
|
<input type="text" id="version" name="version" value="DL8" required><br><br>
|
|
|
|
<label for="quality">quality (mode):</label><br>
|
|
<input type="text" id="quality" name="quality" required><br><br>
|
|
|
|
<button type="submit">提交 POST 请求</button>
|
|
</form>
|
|
</body>
|
|
</html>
|