-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (57 loc) · 2.85 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Generatore Orario</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<main class="app-container">
<header>
<h1>Generatore Orario</h1>
</header>
<section class="info-authorization">
<p>
Benvenuto, per creare il tuo calendario devi disporre di un account <strong>google</strong> e consentire all'applicazione di accedere ai tuoi calendari.
</p>
<span id="signinButton">
<span
class="g-signin"
data-callback="signinCallback"
data-clientid="221078581487-oph0qts3kh9bfppciv3u3r9h87liugdo.apps.googleusercontent.com"
data-cookiepolicy="single_host_origin"
data-requestvisibleactions="http://schemas.google.com/AddActivity"
data-scope="https://www.googleapis.com/auth/plus.login https://www.googleapis.com/auth/calendar">
</span>
</span>
</section>
<footer>
<p><small>Creato da <a href="http://rkpasia.github.io"><em>Riccardo Pasianotto</em></a> per informazioni o richieste specifiche riguardanti gli orari <a href="mailto:riccardo.pasianotto@gmail.com">scrivimi</a>.</small></p>
<p><strong>Vuoi contribuire allo sviluppo?
<iframe src="http://ghbtns.com/github-btn.html?user=rkpasia&repo=Calendar-Generator&type=fork"
allowtransparency="true" frameborder="0" scrolling="0" width="62" height="20"></iframe></strong></p>
<p>Fai sapere anche ad altri dell'applicazione! <iframe src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2Fgeneratoreorariouniud&width&layout=button&action=like&show_faces=true&share=false&height=80&appId=656373374447432" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:80px;" allowTransparency="true"></iframe></p>
</footer>
</main>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="js/mustache.js"></script>
<script src="js/authentications.js"></script>
<script src="js/templates.js"></script>
<script src="js/calendar-generator.js"></script>
<!--<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-51862292-4', 'auto');
ga('send', 'pageview');
</script>-->
<script type="text/javascript">
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/client:plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
</body>
</html>