oauthlogout.php 218 B

12345678
  1. <?php
  2. session_start();
  3. $_SESSION["login"] = "";
  4. setcookie("username","",time()+ 3600);
  5. setcookie("password","",time()+ 3600);
  6. session_destroy();
  7. header("Location: https://adfs.alanyeung.co/adfs/ls/?wa=wsignout1.0");
  8. ?>