logout.blade.php 701 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>退出</title>
  8. <style>
  9. .main{
  10. height: 300px;
  11. text-align: center;
  12. }
  13. p{
  14. margin-top: 130px;
  15. font-size: 30px;
  16. line-height: 30px;
  17. text-align: center;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="main">
  23. <p>退出成功</p>
  24. </div>
  25. </body>
  26. <script>
  27. window.onload=function () {
  28. localStorage.clear();
  29. }
  30. </script>
  31. </html>