blob: b37d18d9d8c1f88e2a4a796b3d2bbde1c3e0ccf4 (
plain)
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
|
<!doctype html>
<html>
<head>
<title>vvalls</title>
[[ include partials/meta ]]
<script>
window.addEventListener("load",function() {
window.scrollTo(0,0)
}, false);
</script>
</head>
<body class="loading">
<div class="rapper page" style="height: 100%;">
[[ include partials/header ]]
<div style="height: 70%; clear: both;"></div>
[[ include partials/signin ]]
[[ include partials/footer ]]
</div>
</body>
[[ include partials/scripts ]]
<script>
setTimeout(function(){
$("[data-role='show-signin-modal']").trigger("click")
})
</script>
</html>
|