Create index.php

This commit is contained in:
Nasir Hafeez
2023-01-25 14:41:25 +05:00
committed by GitHub
parent afa9de3029
commit e11aac7b26

17
D Link/index.php Normal file
View File

@@ -0,0 +1,17 @@
<?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>