mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
24 lines
No EOL
510 B
Lua
24 lines
No EOL
510 B
Lua
--
|
|
-- (C) 2013-17 - ntop.org
|
|
--
|
|
|
|
dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
require "lua_utils"
|
|
|
|
sendHTTPHeader('text/html; charset=iso-8859-1')
|
|
|
|
print [[
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE>Authentication Successful</TITLE>
|
|
<meta http-equiv="refresh" Content="5; url=http://www.ntop.org"/>
|
|
</HEAD>
|
|
<BODY>
|
|
Success ']] print(_GET["label"]) print [['.
|
|
<p>
|
|
We're redirecting you to the Internet...
|
|
</BODY>
|
|
</HTML>
|
|
]] |