40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
<!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;
|
|
if (!window.opener) {
|
|
localStorage.setItem('lastAuthResult', JSON.stringify(authResult));
|
|
window.location.href = '<%= Discourse.base_url.html_safe %>?authComplete=true';
|
|
} else {
|
|
window.opener.Discourse.authenticationComplete(authResult);
|
|
window.close();
|
|
}
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|