-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform_res.html
80 lines (67 loc) · 1.73 KB
/
form_res.html
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en-us"></html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Авторы проекта</title>
</head>
</html>
<html>
<header>
<script>
(function () {
var app = "https://script.google.com/macros/s/AKfycbyf1fZSk45SAx23guPg6Yaj3I78TqI-NKO70NLqUNvVoZm9BFzKXsHyulAreJAaJXk6/exec",
output = '',
xhr = new XMLHttpRequest();
xhr.open('GET', app);
xhr.onreadystatechange = function() {
if (xhr.readyState !== 4) return;
if (xhr.status == 200) {
try {
var r = JSON.parse(xhr.responseText),
result = r["result"];
for (var i = 0; i < result.length; i++){
var obj = r["result"][i];
output += obj.join("<br/>") + "<br/><hr/>";
}
} catch(e) {}
}
document.getElementById('info').innerHTML = output;
}
xhr.send()
})()
</script>
<nav class="collor" role="navigation">
<div class="navigation_form">
<a id="logo-container" href="/" class="logo">
ебаный рот
</a>
<ul class="right button">
<li>
<a href="/form_reg.html">Пачада заявки</a>
</li>
<li>
<a href="/form_golos.html"> Голосование</a>
</li>
<il>
<a href="/form_res.html"> Результат</a>
</il>
</ul>
</div>
</nav>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<body>
<div>
<table>
<tr>
<th>пидр</th>
<th>пидорас</th>
<th>пидрила</th>
</tr>
</table>
</div>
<div id="info"></div>
</body>
</html>