discourse/app/views/users/omniauth_callbacks/complete.html.erb

40 lines
1.3 KiB
Plaintext
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<title><%= SiteSetting.title %></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<style type="text/css">
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
div.dialog {
width: 90%;
padding: 0 1em;
margin: 2em auto 0 auto;
border: 1px solid #ccc;
border-right-color: #999;
border-bottom-color: #999;
}
</style>
</head>
<body>
<div class="dialog">
<p><%=t "login.close_window" %></p>
<script type="text/javascript">
var authResult = <%=@auth_result.to_client_hash.to_json.html_safe%>;
// On facebook browser, just redirect and don't close
var ua = navigator.userAgent || navigator.vendor || window.opera;
2016-06-09 15:51:46 -04:00
if ((ua.indexOf("FBAN") > -1) || (ua.indexOf("FBAV") > -1)) {
localStorage.setItem('lastAuthResult', JSON.stringify(authResult));
window.location.href = '<%= Discourse.base_url.html_safe %>?authComplete=true';
2016-06-09 15:51:46 -04:00
} else {
window.opener.Discourse.authenticationComplete(authResult);
window.close();
2016-06-09 15:51:46 -04:00
}
</script>
</div>
</body>
</html>