diff options
Diffstat (limited to 'sca-cpp/trunk/modules/edit/htdocs/logout/index.html')
-rw-r--r-- | sca-cpp/trunk/modules/edit/htdocs/logout/index.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sca-cpp/trunk/modules/edit/htdocs/logout/index.html b/sca-cpp/trunk/modules/edit/htdocs/logout/index.html index 7c326463cf..ee07c9bf15 100644 --- a/sca-cpp/trunk/modules/edit/htdocs/logout/index.html +++ b/sca-cpp/trunk/modules/edit/htdocs/logout/index.html @@ -27,14 +27,22 @@ <link rel="stylesheet" type="text/css" href="/ui-min.css"/> <script type="text/javascript" src="/all-min.js"></script> </head> -<body onorientationchange="ui.reload();"> +<body class="delayed" onorientationchange="ui.reload();"> +<div id="bodydiv" class="devicewidth"> + <h1>Sign out</h1> <form name="signout" onsubmit="submitSignout();" action="/" method="GET"> <input type="submit" id="signOut" value="Sign out" class="greenbutton" style="font-weight: bold"/> </form> +</div> + <script type="text/javascript"> + +// Show the page +ui.showbody(); + function submitSignout() { var reset = 'TuscanyOpenAuth=;expires=' + new Date(1970,01,01).toGMTString() + ';domain=.' + domainname(window.location.hostname) + ';path=/;secure=TRUE'; document.cookie = reset; |