13 lines
		
	
	
		
			411 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			411 B
		
	
	
	
		
			HTML
		
	
	
	
| <!DOCTYPE html>
 | |
| <title>Authentication complete</title>
 | |
| <p>Authentication is complete. If this does not happen automatically, please close the window.</p>
 | |
| <script>
 | |
|   if (window.opener) {
 | |
|     window.opener.postMessage({
 | |
|       'flutter-web-auth-2': window.location.href
 | |
|     }, window.location.origin);
 | |
|   } else {
 | |
|     localStorage.setItem('flutter-web-auth-2', window.location.href);
 | |
|   }
 | |
|   window.close();
 | |
| </script> |