ASDSO Dam Safety Toolbox

Log out: Difference between revisions

From ASDSO Dam Safety Toolbox
Jump to: navigation, search
(Created page with "<html> <h1 class="firstHeading page-header">Log out</h1> <form method="post" class="mw-htmlform mw-htmlform-ooui oo-ui-layout oo-ui-formLayout"> <div class="mw-htmlform-ooui-header oo-ui-layout oo-ui-fieldLayout oo-ui-fieldLayout-align-top"> <div class="oo-ui-fieldLayout-body"> <div class="oo-ui-fieldLayout-field"> <label aria-disabled="false" aria-labelledby="ooui-php-1" class="oo-ui-widget oo-ui-widget-enabled oo-ui-labelElement-label oo...")
 
No edit summary
 
(37 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<html>
<html>
   <h1 class="firstHeading page-header">Log out</h1>
   <div id="confirmLogout">
  <form method="post" class="mw-htmlform mw-htmlform-ooui oo-ui-layout oo-ui-formLayout">
    <p>Do you want to log out?</p>
    <div class="mw-htmlform-ooui-header oo-ui-layout oo-ui-fieldLayout oo-ui-fieldLayout-align-top">
    <button type="button" onclick="logOut()" class="button"
      <div class="oo-ui-fieldLayout-body">
      style="color: #fff;
        <div class="oo-ui-fieldLayout-field">
      background-color: #36c;
          <label aria-disabled="false" aria-labelledby="ooui-php-1" class="oo-ui-widget oo-ui-widget-enabled oo-ui-labelElement-label oo-ui-labelElement oo-ui-labelWidget">
      cursor: pointer;
            Do you want to log out?
      padding: 5px 12px;
          </label>
      line-height: 1;
        </div>
      border: 1px solid #36c;
      </div>
      border-radius: 2px;
     </div>
      transition: background-color 100ms,color 100ms,border-color 100ms,box-shadow 100ms;
    <input id="wpEditToken" type="hidden" value="26793b672396a00acccbb4676dce62ec64305a77+\" name="wpEditToken">
      min-height: 35px;
     <input type="hidden" value="Special:UserLogout" name="title">
      text-decoration: none;">Submit</button>
    <input name="returnto" type="hidden" value="Main Page">
  </div>
    <input name="redirectparams" type="hidden" value="returnto=Main+Page">
  <div id="logoutSuccess" style="visibility: hidden;">
     <div class="mw-htmlform-submit-buttons">
    <p><strong>You are now logged out and will be redirected to the <a href="https://portal.damsafety.org">ASDSO Dam Safety Portal</a> in a few seconds.</strong></p>
       <span aria-disabled="false" id="ooui-php-2" class="mw-htmlform-submit oo-ui-widget oo-ui-widget-enabled oo-ui-inputWidget oo-ui-buttonElement oo-ui-buttonElement-framed oo-ui-labelElement oo-ui-flaggedElement-primary oo-ui-flaggedElement-progressive oo-ui-buttonInputWidget">
    <!-- TODO: if we can figure out how to redirect from Impexium site use this instead of the above -->
         <button type="submit" name="impexiumLogout" aria-disabled="false" value="Submit" class="oo-ui-inputWidget-input oo-ui-buttonElement-button">
    <!-- <p><strong>You are now logged out.</strong></p>
          <span class="oo-ui-labelElement-label">Submit</span>
     <p>Return to <a id="redirectUrl" href="/wiki/Main_Page">Main Page</a></p> -->
        </button>
  </div>
      </span>
 
     </div>
  <script>
   </form>
     function setRedirects(){
      var previousUrl = document.referrer;
      if (!previousUrl || previousUrl !== "") {
        document.getElementById("redirectUrl").href = previousUrl;
        var pageTitle = previousUrl.split("https://damtoolbox.org/wiki/").pop().replaceAll('_',' ');
        document.getElementById("redirectUrl").text = pageTitle;
      }
    }
 
     function logOut() {
      // Clear cookie by setting the expiration date to one day ago
      var myDate = new Date();
      myDate.setDate(myDate.getDate()-1);
       document.cookie = "remoteUserEmail='';expires=" + myDate + ";domain=damtoolbox.org;path=/;secure";
 
      // Navigate to Impexium site and logout there
      setTimeout(function() {
         window.location.href = 'https://portal.damsafety.org/account/logout.aspx';
      }, 3000);
 
      // Show confirmation
      var x = document.getElementById("confirmLogout");
      x.style.display = "none";
      var y = document.getElementById("logoutSuccess");
      y.style.visibility = "visible";
    }
 
    //TODO: if we can figure out how to redirect from Impexium site use this
     //setRedirects();
   </script>
</html>
</html>

Latest revision as of 12:52, 2 May 2023

Do you want to log out?