-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (67 loc) · 3.92 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PTReport - Generator</title>
<link rel="stylesheet" href="/assets/css/styles.css" type="text/css">
<link rel="shortcut icon" href="/assets/favicon/icon.ico" type="image/x-icon">
<meta content="PTReport" property="og:title" />
<meta content="Make a report easily, then send it!" property="og:description" />
<meta content="https://pt-report.antivirusunite.com/" property="og:url" />
<meta content="https://pt-report.antivirusunite.com/assets/favicon/icon.png" property="og:image" />
<meta content="#43B581" data-react-helmet="true" name="theme-color" />
<meta name="google-site-verification" content="Soz1oOA6fd6YqubDTNJFjfdd6C4-7HBsl_QIV8qp_DQ" />
</head>
<body>
<nav class="navbar">
<ul>
<li><a href="#" class="active">Report</a></li>
<li><a href="/doc/guide/">Guide</a></li>
<li><a href="/doc/about/">About</a></li>
<li><a href="#"></a></li>
</ul>
<button class="menu-toggle">⚙️</button>
</nav>
<div class="container">
<h1>PonyTown Reporter</h1>
<h2 class="red">Early development</h2>
<p>This form is here to help you making a complete reporting template to send to ponytown's moderation mail.</p>
<p><strong>Need a guide?</strong> read it <a href="/doc/guide/">here</a>.</p>
<form id="reportForm">
<!-- <label for="reportType">Quote the rule/problem:</label>
<input type="text" id="reportType" name="reportType" required> -->
<label for="reportDesc">Consise description:</label>
<p class="left-text">Give as much information as possible about the problem you are reporting</p>
<textarea id="reportDesc" name="reportDesc"
placeholder="Enter what happened here. Please remember to have common sence." required></textarea>
<label for="accountId">Account ID</label>
<p class="left-text">Your ponytown ID can be found in <a href="https://pony.town/account"
class="bold-text italic-text">Account settings page</a>.</p>
<input type="text" id="accountId" name="accountId" placeholder="Your ponytown ID" required>
<label for="hiddenUser">Hided user name:</label>
<p class="left-text">The user you are reporting, if you don't know their name, you can find it in the
chatlog or in your hide list in <a class="bold-text italic-text"
href="https://pony.town/account">Account settings page</a> below the <span
class="bold-text italic-text">Redeem Boosty code</span> section.</p>
<input type="text" id="hiddenUser" name="hiddenUser" placeholder="The user you are reporting." required>
<label for="messageSent">Messages they sent:</label>
<p class="left-text">put here all messages that is breaking the rule:</p>
<textarea id="messageSent" name="messageSent"
placeholder="Make sure to include all messages that is breaking the rule." required></textarea>
<label for="relatedChatlog">Pasted chatlog / pictures:</label>
<p class="left-text">Copy paste the chatlog of what happened here. When you'll send your mail, don't forget
to include screenshots.</p>
<textarea id="relatedChatlog" name="relatedChatlog"></textarea>
<button type="submit">Generate the report</button>
</form>
</div>
<!-- Night mode toggle button -->
<button id="nightModeToggle">Night Mode</button>
<!-- Scripts, one general, one for darkmode -->
<script src="/assets/js/app.js"></script>
<script src="/assets/js/darkMode.js"></script>
<script src="/assets/js/containerAnimation.js"></script> <!-- Ajoutez cette ligne -->
</body>
</body>
</html>