mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-05 04:46:07 +01:00
modifed litespeed/mariadb/powerdns/phpmyadmin/rainloop download URL to mirror for improve chinese network download speed.
67 lines
1.7 KiB
HTML
67 lines
1.7 KiB
HTML
<p> <p>Test Get method:
|
|
<form action="/reqinfo/testget" method="get">
|
|
First value: <input type="text" name="fvalue"><br>
|
|
Last value: <input type="text" name="lvalue"><br>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
|
|
|
|
<p><p>Test post method echo
|
|
<form action="/reqinfo/echo" method="post">
|
|
First value: <input type="text" name="fvalue"><br>
|
|
Last value: <input type="text" name="lvalue"><br>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
|
|
|
|
|
|
|
|
<p><p>Test post method md5
|
|
<form action="/reqinfo/md5" method="post">
|
|
First value: <input type="text" name="fvalue"><br>
|
|
Last value: <input type="text" name="lvalue"><br>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
|
|
|
|
<p><p>Test post method upload
|
|
<form action="/reqinfo/upload" method="post">
|
|
First value: <input type="text" name="fvalue"><br>
|
|
Last value: <input type="text" name="lvalue"><br>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
|
|
|
|
|
|
|
|
|
|
<p><p>Test post a file and echo the whole request body
|
|
<form method="post" action="/reqinfo/echo" name="submit" enctype="multipart/form-data">
|
|
<input type="file" name="fileField"><br /><br />
|
|
<input type="submit" name="submit" value="Submit">
|
|
</form>
|
|
|
|
|
|
|
|
<p><p>Test post a file and calculate the request body's md5
|
|
<form method="post" action="/reqinfo/md5" name="submit" enctype="multipart/form-data">
|
|
<input type="file" name="fileField"><br /><br />
|
|
<input type="submit" name="submit" value="Submit">
|
|
</form>
|
|
|
|
<p><p>Test post a file and save file to /tmp/uploadfile
|
|
<form method="post" action="/reqinfo/upload" name="submit" enctype="multipart/form-data">
|
|
<input type="file" name="fileField"><br /><br />
|
|
<input type="submit" name="submit" value="Submit">
|
|
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|