Compare commits

...

3 Commits

Author SHA1 Message Date
g1n ffc791eaf7 Corrected contacts on signup page 2022-06-28 07:18:57 +00:00
g1n 7e90e0204b Add info about biboumi 2022-06-28 07:16:24 +00:00
g1n e2afdbfb90 Add user counter 2022-06-28 07:13:09 +00:00
3 changed files with 11 additions and 2 deletions

View File

@ -8,16 +8,21 @@
<hr>
<h3>Our users</h3>
<?php
$total_users = 0;
if ($opendirectory = opendir('/home')) {
while (($user = readdir($opendirectory)) !== false) {
if ($user[0] != '.' and file_exists("/home/$user/public_html")) {
if ($user[0] != '.' and $user != "tcoin" and file_exists("/home/$user/public_html")) {
echo "<p>~&gt; <a href=\"/~$user\">$user</a></p>";
$total_users+=1;
}
}
closedir($opendirectory);
echo "<p>Users in total: 0x" . dechex($total_users) . " (" . $total_users . ")</p>";
}
?>
<hr>
<h3>Our services</h3>
<p>~&gt; <a href="https://mail.hextilde.xyz">Webmail</a></p>
<p>~&gt; <a href="wiki/xmpp.php">XMPP</a></p>
<p>~&gt; <a href="wiki/xmpp.php#biboumi">Biboumi</a></p>
<?php include 'footer.php' ?>

View File

@ -2,7 +2,7 @@
<?php if($_POST==array()){ ?>
<p>Please fill in this form in order to register</p>
<p>We will contact you when your account is ready</p>
<p>If you can't or don't want to use form, contact us dirrectly via <a href="mailto:root@hextilde.xyz">email</a> or <a href="/wiki/irc.php">IRC</a></p>
<p>If you can't or don't want to use form, contact us directly via <a href="mailto:root@hextilde.xyz">email</a> or g1n or r1k on <a href="/wiki/irc.php">IRC</a></p>
<hr>
<br>
<form id="signup" method="POST">

View File

@ -6,5 +6,9 @@
<h4>~&gt; How to connect</h4>
<p>To connect to our XMPP server, you just need to use <code>username@hextilde.xyz</code> as your username and your shell password as your password in your XMPP client</p>
<p>Join hextilde MUC on xmpp - <a href="xmpp:0x~@muc.hextilde.xyz?join">0x~@muc.hextilde.xyz</a></p>
<h4 id="biboumi"><a href="#biboumi">~&gt; biboumi</a></h4>
<p>We also host <a href="https://biboumi.louiz.org/">biboumi</a> instance. You can use it to join irc channel using xmpp.</p>
<p>Use format similar to this:</p>
<code>#hextilde%tilde.chat@irc.hextilde.xyz</code>
<h4>~&gt; Also check <a href="https://tilde.wiki/wiki/XMPP">page on ~wiki about XMPP</a></h4>
<?php include 'footer.php'; ?>