Create index.html

This commit is contained in:
Nasir Hafeez
2020-01-27 12:11:40 +05:00
committed by GitHub
parent 4f61842c54
commit c2d36b1709

19
Aerohive/index.html Normal file
View File

@@ -0,0 +1,19 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>WiFi Portal</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<p>Welcome!<br>
Please login to our Wifi service</p>
<form method=POST action="http://1.1.1.1/reg.php">
Username: <input name=user value="">
Password: <input name=password value="">
<input type="hidden" name="url" value="any-value-here"/>
<BR><input type="submit" name="login" value="Login"/>
</form>
</body>
</html>