-
Notifications
You must be signed in to change notification settings - Fork 5
/
contact.html
92 lines (85 loc) · 4.61 KB
/
contact.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Codidact</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="https://unpkg.com/@codidact/[email protected]/dist/codidact.css" />
<link rel="stylesheet" type="text/css" media="screen" href="additional.css" />
<link rel="icon" type="image/ico" href="favicon.ico" />
<script type="application/javascript" src="topanswers.js"></script>
</head>
<body>
<header class="header">
<div class="container header--container">
<div class="header--brand">
<a class="header--site-name" href="./" style="display: flex"><img src="https://codidact.org/assets/img/logo-codidact.svg" alt="Codidact"></a>
</div>
<div class="header--menu">
<a class="header--item" href="/">Communities</a>
<a class="header--item is-active" href="/contact">Contact</a>
<div class="header--separator"></div>
<a class="header--item" href="https://codidact.org">Project homepage</a>
</div>
</div>
</header>
<main class="container has-padding-4">
<div class="grid">
<div class="grid--cell is-1"></div>
<div class="grid--cell is-10">
<h1>Contact Us</h1>
<p>
Need to get in touch? There's a few ways you can contact us, depending on what you need.
</p>
<h2 class="has-color-red-500">Security</h2>
<p>
<strong class="has-color-red-500">
Please don't report security vulnerabilities publicly, including on Meta.
</strong>
If you believe you've found a security issue, please use our
<a href="https://codidact.atlassian.net/servicedesk/customer/portal/1">support portal</a> and use
the Security request type, or email us at
<a href="mailto:[email protected]">[email protected]</a>, mentioning SECURITY in the subject
line.
</p>
<h2>GitHub</h2>
<p>Codidact is an open-source project. If you find a bug or are requesting a change, you're welcome to report an issue in <a href="https://github.com/codidact/qpixel">our primary repository</a>. You can also use Meta (next option). Don't worry about choosing between GitHub and Meta; we'll make sure issues and discussions end up in the right places.
</p>
<h2>Meta</h2>
<p>
If you're asking about how our sites or the organisation operates, or if you've got a feature request or a
bug report, <a href="https://meta.codidact.com/">Meta</a> is the place to do that. Post there with the
details, and either the community will be able to answer or our staff can get back to you. (It's ok to use GitHub if you prefer. If something comes up on GitHub that the community should discuss, we'll bring it to Meta.)
</p>
<h2>Support</h2>
<p>
If you need to get in touch for support with your Codidact account or something else, use our
<a href="https://codidact.atlassian.net/servicedesk/customer/portal/1">support portal</a>, or email
us at <a href="mailto:[email protected]">[email protected]</a>.
</p>
<h2>Enquiries</h2>
<p>
For all other enquiries, please email <a href="mailto:[email protected]">[email protected]</a>.
</p>
</div>
</div>
</main>
<!-- Matomo -->
<script type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="./community-assets//analytics.codidact.org/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '3']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="//analytics.codidact.org/matomo.php?idsite=3&rec=1" style="border:0;" alt="" /></p></noscript>
<!-- End Matomo Code -->
</body>
</html>