--
-- (C) 2013-18 - ntop.org
--
local dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
require "lua_utils"
sendHTTPContentTypeHeader('text/html')
print [[
]] print(i18n("login.auth_success")) print[[
]]
local redirection_url = ntop.getPref("ntopng.prefs.redirection_url")
if isEmptyString(redirection_url) then
-- Redirect to the original URL
redirection_url = _GET["referer"]
if not isEmptyString(redirection_url) and not starts(redirection_url, "http") then
redirection_url = "http://" .. redirection_url
end
end
if not isEmptyString(redirection_url) then
print('')
end
print [[
Success]]
if _GET["label"] ~= nil then
print(" ".._GET["label"])
end
print [[.
]]
if not isEmptyString(redirection_url) then
print(i18n("login.internet_redirecting"))
end
print [[
]]