-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommittee.html
More file actions
85 lines (74 loc) · 4.29 KB
/
committee.html
File metadata and controls
85 lines (74 loc) · 4.29 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
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
78
79
80
81
82
83
84
85
<!-- tools.html -->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Canadian Cloud Tools</title>
<!-- Tell compliant crawlers not to index -->
<meta name="robots" content="noindex, nofollow, noarchive" />
<style>
body { font-family: system-ui, Arial, sans-serif; max-width: 800px; margin: 60px auto; padding: 0 16px; }
ul { line-height: 1.9; }
.top { display:flex; justify-content: space-between; align-items:center; gap: 12px; flex-wrap: wrap; }
button { padding: 8px 12px; cursor: pointer; }
</style>
</head>
<body>
<script>
// Gate check
if (sessionStorage.getItem("cc_auth") !== "1") {
window.location.replace("committee.html");
}
</script>
<div class="top">
<h1>Tools</h1>
<button id="logout">Logout</button>
</div>
<h3>If you don't have access please message Matt on Matt@MattCarolan.net</h3>
<p>Toronto Cloud Summit Utilities:</p>
<ul>
<li><a href="https://www.cloudsummit.ca" target="_blank" rel="noopener">Public Website</a></li>
<li><a href="https://chat.whatsapp.com/BcXy1gE7Byo1LdK08E63ar" target="_blank" rel="noopener">Whatsapp</a></li>
<li><a href="https://cloudsummit.atlassian.net/wiki/spaces/TC" target="_blank" rel="noopener">Confluence</a></li>
<li><a href="https://github.com/orgs/CanadianCloud/projects/1" target="_blank" rel="noopener">Github Project</a></li>
<li><a href="https://drive.google.com/drive/folders/1yioUJT8KYMgStN0jnJ1pSGp3EQT_8AtN?usp=drive_link" target="_blank" rel="noopener">Google Drive</a></li>
</ul>
<p>Vancouver Cloud Summit Utilities:</p>
<ul>
<li><a href="https://www.cloudsummit.ca" target="_blank" rel="noopener">Public Website</a></li>
<li><a href="https://chat.whatsapp.com/JxVM3GgKMmzGXaid4BqBYq" target="_blank" rel="noopener">Whatsapp</a></li>
<li><a href="https://cpca-events.atlassian.net/wiki/x/OwEXAw" target="_blank" rel="noopener">Confluence</a></li>
<li><a href="https://github.com/orgs/CanadianCloud/projects/2" target="_blank" rel="noopener">Github Project</a></li>
<li><a href="https://drive.google.com/drive/folders/1yioUJT8KYMgStN0jnJ1pSGp3EQT_8AtN?usp=drive_link" target="_blank" rel="noopener">Google Drive</a></li>
<li><a href="https://hackers.atlassian.net/wiki/spaces/CSD/overview" target="_blank" rel="noopener">Dev Team Confluence</a></li>
</ul>
<p>Hacker Rivals Utilities:</p>
<ul>
<li><a href="https://www.hackerrivals.com" target="_blank" rel="noopener">Public Website</a></li>
<li><a href="https://chat.whatsapp.com/KdXwSq68Zx4IST6hB08wrn" target="_blank" rel="noopener">Whatsapp</a></li>
<li><a href="https://hackers.atlassian.net/wiki/x/BYER" target="_blank" rel="noopener">Confluence</a></li>
<li><a href="https://drive.google.com/drive/folders/1RE856XE93MFMNYMeQIyqxL1DZxce-P7I?usp=drive_link" target="_blank" rel="noopener">Google Drive</a></li>
</ul>
<p>Vancouver AWS Usergroup Utilities:</p>
<ul>
<li><a href="https://www.awscanada.ca" target="_blank" rel="noopener">Public Website</a></li>
<li><a href="https://chat.whatsapp.com/DSIFpgySRfy9zueULHeGwn" target="_blank" rel="noopener">Whatsapp</a></li>
<li><a href="https://github.com/CanadianCloud/aws-ug-vancouver" target="_blank" rel="noopener">Github</a></li>
<li><a href="https://drive.google.com/drive/folders/1AqF2-ovE6VahtvC_33h6ZWCaFnLwDscT?usp=drive_link" target="_blank" rel="noopener">Google Drive</a></li>
</ul>
<p>Vancouver Azure Usergroup Utilities:</p>
<ul>
<li><a href="https://www.azurecanada.ca" target="_blank" rel="noopener">Public Website</a></li>
<li><a href="https://chat.whatsapp.com/CFglk0hkAZOG1APetZ7kPE" target="_blank" rel="noopener">Whatsapp</a></li>
<li><a href="https://github.com/CanadianCloud/azure-ug-vancouver" target="_blank" rel="noopener">Github</a></li>
<li><a href="https://drive.google.com/drive/folders/1D_RgIKfHidrRasB79OiCw61XMtCsr5tC?usp=drive_link" target="_blank" rel="noopener">Google Drive</a></li>
</ul>
<script>
document.getElementById("logout").addEventListener("click", () => {
sessionStorage.removeItem("cc_auth");
window.location.href = "https://www.canadiancloud.org";
});
</script>
</body>
</html>