Create index.php

This commit is contained in:
Nasir Hafeez
2025-08-08 20:33:07 +05:00
committed by GitHub
parent 264930e0b1
commit 9cd4398594

15
Huawei/index.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
$url = $_GET['url'];
$mac = $_GET['usermac'];
?>
<html>
<body>
<form name="login" action = "<?php echo htmlspecialchars($url);?>" method = "POST">
<input type="hidden" name="username" value="<?php echo htmlspecialchars($mac);?>" />
<input type="hidden" name="password" value="<?php echo htmlspecialchars($mac);?>" />
<input type="submit" name="submit" value="LOGIN" />
</form>
</body>
</html>