firmware/src/packages/fff/fff-web-ui/files/www/ssl/cgi-bin/logout.html

20 lines
488 B
HTML
Executable File

#!/usr/bin/haserl
<%
echo -en "Content-Type: text/html\r\n\r\n"
url="//logout:logout@${HTTP_HOST}/"
%>
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="refresh" content="0; URL=<%= ${url} %>">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<a href="<%= ${url} %>">Logging out...</a>
</body>
</html>