1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00
samba-mirror/swat/logout.esp
Andrew Tridgell ca6b9f370b r7088: start on some real structure for the SWAT web pages
- this imports the basic css pages from samba.org

- i have created some useful ejs scripts in common.js that will be included by all pages

- added a real login page, and a logout button showing who you are logged in as

- added page_header() and page_footer() functions that take a page type, allowing
  for "plain" or "columms" pages

- added some simple menus on the left of the columns page type, with links to the esp
  tests and some useful links for samba4 developers
(This used to be commit 86d2ecf0f2)
2007-10-10 13:17:14 -05:00

9 lines
118 B
Plaintext

<%
page_header("plain", "Logging out");
session.AUTHENTICATED = false;
redirect("/login.esp");
page_footer();
%>