index.html 967 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!-- Copyright (C) Microsoft Corporation. All rights reserved. -->
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8" />
  6. <title>Microsoft Account - Sign In</title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <link rel="stylesheet" type="text/css" media="screen" href="auth.css" />
  9. </head>
  10. <body>
  11. <a class="branding" href="https://code.visualstudio.com/">
  12. Visual Studio Code
  13. </a>
  14. <div class="message-container">
  15. <div class="message">
  16. You are signed in now and can close this page.
  17. </div>
  18. <div class="error-message">
  19. An error occurred while signing in:
  20. <div class="error-text"></div>
  21. </div>
  22. </div>
  23. <script>
  24. var search = window.location.search;
  25. var error = (/[?&^]error=([^&]+)/.exec(search) || [])[1];
  26. if (error) {
  27. document.querySelector('.error-text')
  28. .textContent = decodeURIComponent(error);
  29. document.querySelector('body')
  30. .classList.add('error');
  31. }
  32. </script>
  33. </body>
  34. </html>