forked from zenmoney/i.zenmoney
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoauth.html
More file actions
40 lines (40 loc) · 1.04 KB
/
oauth.html
File metadata and controls
40 lines (40 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Дзен-мани</title>
<link href="css/oauth.css" media="screen" rel="stylesheet">
<script src="google/chrome_ex_oauthsimple.js"></script>
<script src="google/chrome_ex_oauth.js"></script>
<script>
function onLoad() {
// alert('upd');
ChromeExOAuth.initCallbackPage();
};
function success(){
document.getElementById('pleaseWait').style.display = 'none';
document.getElementById('successText').style.display = 'block';
setTimeout(window.parent.SINC.hide, 500);
}
window.addEventListener('load', onLoad, false);
</script>
<style>
#successText{
display:none;
}
</style>
</head>
<body>
<div id="mainWrapper">
<div class="inMainWrapper">
<div class="contentBlock">
<div class="sloganBlock">
<div id="pleaseWait" class="appInfo">Пожалуйста, подождите...</div>
<div id="successText" class="appInfo">Приложение авторизовано.</div>
</div>
<div class="clear"> </div>
</div>
</div>
</div>
</body>
</html>