forked from SWU-Petranaki/SWUOnline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConduct.php
More file actions
73 lines (66 loc) · 2.03 KB
/
Conduct.php
File metadata and controls
73 lines (66 loc) · 2.03 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
<?php
include_once 'MenuBar.php';
include_once 'Header.php';
?>
<style>
.ref-page-conduct {
width: 90vw;
padding: 2rem;
margin-left: auto;
margin-right: auto;
border-radius: 16px;
backdrop-filter: blur(16px);
display: flex;
flex-direction: column;
font-size: 1.35rem;
}
.ref-page-conduct p {
font-size: 1.5rem;
margin-top: 2rem;
}
.ref-page-conduct ul {
display: flex;
flex-direction: column;
}
.ref-page-conduct ul li {
margin: 1.25rem 0 0 2rem;
display: list-item;
}
p.ref-page-conduct-disclaimer {
font-size: 1.25rem;
color: #aaa;
margin-top: 2.5rem;
}
a.ref-page-link {
display: inline;
color: #ffd24d;
padding: 0;
margin: 0;
}
</style>
<div class="core-wrapper bg-yellow ref-page-conduct">
<h1>Code of Conduct</h1>
<p>
By playing on Petranaki.net, users agree to the following rules of conduct:
</p>
<ul>
<li>
First and foremost, remember that this is a game. Everyone is here to have fun. If you're behaving in such a way that is meant to cause your opponent to have a bad time, you may want to go home and rethink your life.
</li>
<li>
That being said, if someone is playing a card/deck you don't like, there's no need to complain about it in chat. Simply move along by leaving the game and finding another.
</li>
<li>
Respect each other. Harassment of any kind will not be tolerated. This includes (but is not limited to) abusing the "Undo" feature.
</li>
<li>
If you have an issue with another player, you may report them by opening a support ticket on our <a class="ref-page-link" href="https://discord.gg/ep9fj8Vj3F" target="_blank" rel="noopener noreferrer">Discord</a> server.
</li>
<li>
Keep usernames and lobby names appropriate. If a moderator deems a username inappropriate, it may result in a ban. Bans can be appealed on our Discord server.
</li>
</ul>
<p class="ref-page-conduct-disclaimer">
These rules are subject to change as necessary.
</p>
</div>