Files
capport/D Link/index.php
2023-01-25 14:41:25 +05:00

18 lines
357 B
PHP

<?php
$login_url = $_GET['login_url'];
?>
<html>
<body>
<form name="login" action = "<?php echo htmlspecialchars($login_url);?>" method = "POST">
Username
<input type="text" name="username" required/>
Password
<input type="password" name="password" required/>
<input type="submit" name="submit" value="LOGIN" />
</form>
</body>
</html>