Revisionierung der restlichen Dateien
This commit is contained in:
1
.htaccess
Normal file
1
.htaccess
Normal file
@@ -0,0 +1 @@
|
||||
Redirect /inhalte/ http://verwaltung.ri-st.de/index.php?section=
|
||||
45
aktivierung.php
Normal file
45
aktivierung.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
error_reporting(E_ERROR | !E_WARNING);
|
||||
include "inc/config.php"; // die Konfigurationsdateien lesen
|
||||
|
||||
ini_set('session.gc_maxlifetime', 7200);
|
||||
|
||||
// Verbindung zu MySQL Aufbauen
|
||||
$db = @new MySQLi(MYSQL_HOST, MYSQL_USER, MYSQL_PASS, MYSQL_DATABASE);
|
||||
if (mysqli_connect_errno()) {
|
||||
die('Konnte keine Verbindung zu Datenbank aufbauen, MySQL meldete: '.mysqli_connect_error());
|
||||
}
|
||||
|
||||
echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n";
|
||||
echo " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n";
|
||||
echo "<html>\n";
|
||||
echo " <head>\n";
|
||||
echo " <title>RIST - Pablo Rink und Christian Steinle GbR</title>\n";
|
||||
echo " <link rel=\"stylesheet\" media=\"all\" type=\"text/css\" href=\"css/best_page.css\" />\n";
|
||||
echo " <meta name=\"description\" content=\"RIST - Pablo Rink und Christian Steinle GbR\" /> \n";
|
||||
echo " <meta name=\"keywords\" content=\"RIST\" /> \n";
|
||||
echo " <meta name=\"Generator\" content=\"RIST (C) 2010. All rights reserved.\" /> \n";
|
||||
echo " <meta name=\"robots\" content=\"index, follow\" /> \n";
|
||||
echo " <link rel=\"shortcut icon\" href=\"favicon.ico\" /> \n";
|
||||
echo " <meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\" /> \n";
|
||||
echo " <meta http-equiv=\"expires\" content=\"0\">\n";
|
||||
echo " <meta http-equiv=\"cache-control\" content=\"no-cache\">\n";
|
||||
echo " <meta http-equiv=\"pragma\" content=\"no-cache\">\n";
|
||||
echo " </head>\n";
|
||||
|
||||
echo " <body>\n";
|
||||
echo " <div id=\"page\">\n";
|
||||
echo " <div id=\"header\">\n";
|
||||
echo " <Aktivierung>\n";
|
||||
echo " </div>\n";
|
||||
echo " <div id=\"inhalt\">\n";
|
||||
echo " <br />\n";
|
||||
include "inhalte/aktivierung.php";
|
||||
echo " </div>\n";
|
||||
echo " <div id=\"footer\">\n";
|
||||
include "inhalte/best_foot.php";
|
||||
echo " </div>\n";
|
||||
echo " </div>\n";
|
||||
echo " </body>\n";
|
||||
echo "</html>\n";
|
||||
?>
|
||||
77
bestellung.php
Normal file
77
bestellung.php
Normal file
@@ -0,0 +1,77 @@
|
||||
<?php
|
||||
error_reporting(E_ERROR | !E_WARNING);
|
||||
include "inc/config.php"; // die Konfigurationsdateien lesen
|
||||
|
||||
ini_set('session.gc_maxlifetime', 7200);
|
||||
|
||||
// Verbindung zu MySQL Aufbauen
|
||||
$db = @new MySQLi(MYSQL_HOST, MYSQL_USER, MYSQL_PASS, MYSQL_DATABASE);
|
||||
if (mysqli_connect_errno()) {
|
||||
die('Konnte keine Verbindung zu Datenbank aufbauen, MySQL meldete: '.mysqli_connect_error());
|
||||
}
|
||||
if ("6" == $_POST['step']) {
|
||||
if (!isset($_POST['prod'])) {
|
||||
die("<h1>Fehler bei der Verarbeitung.</h1>");
|
||||
}
|
||||
if ("Frau" == $_POST['Anrede']) {
|
||||
$Anrede = "Sehr geehrte Frau ".$_POST['Nachname'].",\n\n";
|
||||
} else {
|
||||
$Anrede = "Sehr geehrter Herr ".$_POST['Nachname'].",\n\n";
|
||||
}
|
||||
include "inhalte/neue_firma_firma.php";
|
||||
include "inhalte/neue_firma_admin.php";
|
||||
include "inhalte/neue_firma_path.php";
|
||||
include "inhalte/neue_firma_create.php";
|
||||
$text = $Anrede;
|
||||
$text .= "vielen Dank für Ihre Bestellung. Im Anhang erhalten Sie die erste Rechnung. Sollten Sie den Rechnungsversand per Post gewählt haben, erhalten Sie Ihre Rechnung auch auf diesem Weg innerhalb der nächsten Tage.\nUm Ihr Produkt zu aktivieren klicken Sie auf folgenden Link:\n";
|
||||
$text .= "http://startup.ri-st.de/aktivierung.php?code=".$aktivierung."\n\n";
|
||||
$text .= "Mit freundlichen Grüßen\n";
|
||||
$text .= "Ihr R!ST Team\n\n";
|
||||
$text .= "Tel: +49 7346 307415\n";
|
||||
$text .= "Email: info@ri-st.de\n";
|
||||
$text .= "Web: http://www.ri-st.de\n";
|
||||
$text .= "R!ST - Rink und Steinle GbR\n";
|
||||
$text .= "Im Gässele 8\n";
|
||||
$text .= "89079 Ulm / Unterweiler\n";
|
||||
$text .= "Gerichtsstand: Amtsgericht Ulm\n";
|
||||
$text .= "Steuernummer: 88019 / 59742\n";
|
||||
|
||||
include "inhalte/neue_firma_reminder.php";
|
||||
include "pdf/neue_firma_pdf.php";
|
||||
include "inhalte/neue_firma_mail.php";
|
||||
|
||||
header('Location: http://startup.ri-st.de/fertig.php');
|
||||
}
|
||||
echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n";
|
||||
echo " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n";
|
||||
echo "<html>\n";
|
||||
echo " <head>\n";
|
||||
echo " <title>RIST - Pablo Rink und Christian Steinle GbR</title>\n";
|
||||
echo " <link rel=\"stylesheet\" media=\"all\" type=\"text/css\" href=\"css/best_page.css\" />\n";
|
||||
echo " <meta name=\"description\" content=\"RIST - Pablo Rink und Christian Steinle GbR\" /> \n";
|
||||
echo " <meta name=\"keywords\" content=\"RIST\" /> \n";
|
||||
echo " <meta name=\"Generator\" content=\"RIST (C) 2010. All rights reserved.\" /> \n";
|
||||
echo " <meta name=\"robots\" content=\"index, follow\" /> \n";
|
||||
echo " <link rel=\"shortcut icon\" href=\"favicon.ico\" /> \n";
|
||||
echo " <meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\" /> \n";
|
||||
echo " <meta http-equiv=\"expires\" content=\"0\">\n";
|
||||
echo " <meta http-equiv=\"cache-control\" content=\"no-cache\">\n";
|
||||
echo " <meta http-equiv=\"pragma\" content=\"no-cache\">\n";
|
||||
echo " </head>\n";
|
||||
|
||||
echo " <body>\n";
|
||||
echo " <div id=\"page\">\n";
|
||||
echo " <div id=\"header\">\n";
|
||||
include "inhalte/best_head.php";
|
||||
echo " </div>\n";
|
||||
echo " <div id=\"inhalt\">\n";
|
||||
echo " <br />\n";
|
||||
include "inhalte/neue_firma.php";
|
||||
echo " </div>\n";
|
||||
echo " <div id=\"footer\">\n";
|
||||
include "inhalte/best_foot.php";
|
||||
echo " </div>\n";
|
||||
echo " </div>\n";
|
||||
echo " </body>\n";
|
||||
echo "</html>\n";
|
||||
?>
|
||||
58
fertig.php
Normal file
58
fertig.php
Normal file
@@ -0,0 +1,58 @@
|
||||
<?php
|
||||
error_reporting(E_ERROR | !E_WARNING);
|
||||
include "inc/config.php"; // die Konfigurationsdateien lesen
|
||||
|
||||
ini_set('session.gc_maxlifetime', 7200);
|
||||
|
||||
// Verbindung zu MySQL Aufbauen
|
||||
$db = @new MySQLi(MYSQL_HOST, MYSQL_USER, MYSQL_PASS, MYSQL_DATABASE);
|
||||
if (mysqli_connect_errno()) {
|
||||
die('Konnte keine Verbindung zu Datenbank aufbauen, MySQL meldete: '.mysqli_connect_error());
|
||||
}
|
||||
|
||||
echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n";
|
||||
echo " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n";
|
||||
echo "<html>\n";
|
||||
echo " <head>\n";
|
||||
echo " <title>RIST - Pablo Rink und Christian Steinle GbR</title>\n";
|
||||
echo " <link rel=\"stylesheet\" media=\"all\" type=\"text/css\" href=\"css/best_page.css\" />\n";
|
||||
echo " <meta name=\"description\" content=\"RIST - Pablo Rink und Christian Steinle GbR\" /> \n";
|
||||
echo " <meta name=\"keywords\" content=\"RIST\" /> \n";
|
||||
echo " <meta name=\"Generator\" content=\"RIST (C) 2010. All rights reserved.\" /> \n";
|
||||
echo " <meta name=\"robots\" content=\"index, follow\" /> \n";
|
||||
echo " <link rel=\"shortcut icon\" href=\"favicon.ico\" /> \n";
|
||||
echo " <meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\" /> \n";
|
||||
echo " <meta http-equiv=\"expires\" content=\"0\">\n";
|
||||
echo " <meta http-equiv=\"cache-control\" content=\"no-cache\">\n";
|
||||
echo " <meta http-equiv=\"pragma\" content=\"no-cache\">\n";
|
||||
echo " </head>\n";
|
||||
|
||||
echo " <body>\n";
|
||||
echo " <div id=\"page\">\n";
|
||||
echo " <div id=\"header\">\n";
|
||||
echo "<div>Firma</div>\n";
|
||||
echo "<div>Benutzer</div>\n";
|
||||
echo "<div>Zahlung</div>\n";
|
||||
echo "<div>AGBs</div>\n";
|
||||
echo "<div>Übersicht</div>\n";
|
||||
echo "<div class=\"aktiv\">Fertig!</div>\n";
|
||||
echo " </div>\n";
|
||||
echo " <div id=\"inhalt\">\n";
|
||||
echo " <br />\n";
|
||||
echo "<fieldset>\n";
|
||||
echo " <legend>Herzlichen Glückwunsch</legend>\n";
|
||||
echo " <p>Das System wurde erfolgreich eingerichtet. Sie erhalten in Kürze eine Email mit einem Aktivierungslink.</p>\n";
|
||||
echo " <p>Klicken Sie in der Email-Nachricht auf den Aktivierungslink, um den Login für Ihr Produkt frei zu schalten.</p>\n";
|
||||
echo " <p>Falls Ihr Email-Programm keine HTML-Nachrichten unterstützt, kopieren Sie den Link in die Adressleiste Ihres Browsers und bestätigen Sie mit Return, um den Login frei zu schalten.</p>\n";
|
||||
echo " <p class=\"warn\">Das R!ST - Team bedankt sich bei Ihnen für Ihr Vertrauen.</p>\n";
|
||||
echo " <p>Hier gehts zum Kunden Login: <a href=\"https://startup.ri-st.de\" target=\"_blank\">Kunden Login</a></p>\n";
|
||||
echo " <p>Zur R!ST Homepage: <a href=\"http://www.ri-st.de\" target=\"_blank\">R!ST Homepage</a></p>\n";
|
||||
echo "</fieldset>\n";
|
||||
echo " </div>\n";
|
||||
echo " <div id=\"footer\">\n";
|
||||
include "inhalte/best_foot.php";
|
||||
echo " </div>\n";
|
||||
echo " </div>\n";
|
||||
echo " </body>\n";
|
||||
echo "</html>\n";
|
||||
?>
|
||||
182
index.php
Normal file
182
index.php
Normal file
@@ -0,0 +1,182 @@
|
||||
<?php
|
||||
error_reporting(E_ERROR | !E_WARNING);
|
||||
session_start();
|
||||
if (isset($_SESSION['Firma']['ID'])) {
|
||||
define('PREFIX', $_SESSION['Firma']['ID']);
|
||||
define('GUELTIG', $_SESSION['Firma']['A_Bis']);
|
||||
define('ZAHLBAR', $_SESSION['Firma']['Z_Bis']);
|
||||
}
|
||||
if ('Test' == PREFIX) {
|
||||
exit();
|
||||
}
|
||||
include "inc/config.php"; // die Konfigurationsdateien lesen
|
||||
ini_set('session.gc_maxlifetime', 7200);
|
||||
// Verbindung zu MySQL Aufbauen
|
||||
$db = @new MySQLi(MYSQL_HOST, MYSQL_USER, MYSQL_PASS, MYSQL_DATABASE);
|
||||
if (mysqli_connect_errno()) {
|
||||
die('Konnte keine Verbindung zu Datenbank aufbauen, MySQL meldete: '.mysqli_connect_error());
|
||||
}
|
||||
|
||||
if (isset($_POST['formaction'])) {
|
||||
if ("view" == $_POST['formaction']) {
|
||||
if (isset($_POST['from'])) {
|
||||
$from = "&from=".$_POST['from'];
|
||||
} else {
|
||||
$from = "";
|
||||
}
|
||||
if ("lv" == $_GET['section']) {
|
||||
include "pdf/lv_pdf.php";
|
||||
header( 'Location: index.php?section=lv&pdf=LV_'.$nt['Jahr'].'_'.$nt['ID'].$from );
|
||||
} elseif ("angebot" == $_GET['section']) {
|
||||
include "pdf/ang_pdf.php";
|
||||
header( 'Location: index.php?section=angebot&pdf=A_'.$nt['Jahr'].'_'.$nt['ID'].$from );
|
||||
} elseif ("bestaet" == $_GET['section']) {
|
||||
include "pdf/best_pdf.php";
|
||||
header( 'Location: index.php?section=bestaet&pdf=B_'.$nt['Jahr'].'_'.$nt['ID'].$from );
|
||||
} elseif ("rechnung" == $_GET['section']) {
|
||||
include "pdf/rech_pdf.php";
|
||||
header( 'Location: index.php?section=rechnung&pdf=R_'.$nt['Jahr'].'_'.$nt['ID'].$from );
|
||||
} elseif ("liefer" == $_GET['section']) {
|
||||
include "pdf/liefer_pdf.php";
|
||||
header( 'Location: index.php?section=liefer&pdf=L_'.$nt['Jahr'].'_'.$nt['ID'].$from );
|
||||
} elseif ("gut" == $_GET['section']) {
|
||||
include "pdf/gut_pdf.php";
|
||||
header( 'Location: index.php?section=gut&pdf=G_'.$nt['Jahr'].'_'.$nt['ID'].$from );
|
||||
} elseif ("oposten" == $_GET['section']) {
|
||||
if (!isset($_POST['mahnung'])) {
|
||||
include "pdf/opost_pdf.php";
|
||||
header( 'Location: index.php?section=oposten&pdf=O_'.date('Ymd') );
|
||||
} else {
|
||||
if ("1" == $_POST['mahnung']) {
|
||||
include "pdf/mahn1_pdf.php";
|
||||
header( 'Location: index.php?section=oposten&pdf=M1_'.$nt['Jahr'].'_'.$nt['ID'] );
|
||||
} else {
|
||||
include "pdf/mahn2_pdf.php";
|
||||
header( 'Location: index.php?section=oposten&pdf=M2_'.$nt['Jahr'].'_'.$nt['ID'] );
|
||||
}
|
||||
}
|
||||
} elseif ("tracking" == $_GET['section']) {
|
||||
include "pdf/track_pdf.php";
|
||||
header( 'Location: index.php?section=tracking&pdf=T_'.date('Ymd') );
|
||||
} elseif ("eur" == $_GET['section']) {
|
||||
if ("aus_ist" == $_POST['type']) {
|
||||
include "pdf/ausist_pdf.php";
|
||||
header( 'Location: index.php?section=eur&pdf=A_'.date('Ymd') );
|
||||
} elseif ("aus_soll" == $_POST['type']) {
|
||||
include "pdf/aussoll_pdf.php";
|
||||
header( 'Location: index.php?section=eur&pdf=A_'.date('Ymd') );
|
||||
} elseif ("ein_ist" == $_POST['type']) {
|
||||
include "pdf/einist_pdf.php";
|
||||
header( 'Location: index.php?section=eur&pdf=E_'.date('Ymd') );
|
||||
} elseif ("ein_soll" == $_POST['type']) {
|
||||
include "pdf/einsoll_pdf.php";
|
||||
header( 'Location: index.php?section=eur&pdf=E_'.date('Ymd') );
|
||||
}
|
||||
} elseif ("schrift" == $_GET['section']) {
|
||||
include "pdf/schrift_pdf.php";
|
||||
header( 'Location: index.php?section=schrift&pdf=S_'.$nt['File_Name'] );
|
||||
} elseif ("kontakt" == $_GET['section']) {
|
||||
include "pdf/kontakt_pdf.php";
|
||||
header( 'Location: index.php?section=kontakt&pdf=K_'.$nt['ID'] );
|
||||
}
|
||||
} elseif ("email" == $_POST['formaction']) {
|
||||
if ("lv" == $_GET['section']) {
|
||||
include "pdf/lv_pdf.php";
|
||||
} elseif ("angebot" == $_GET['section']) {
|
||||
include "pdf/ang_pdf.php";
|
||||
} elseif ("bestaet" == $_GET['section']) {
|
||||
include "pdf/best_pdf.php";
|
||||
} elseif ("rechnung" == $_GET['section']) {
|
||||
include "pdf/rech_pdf.php";
|
||||
} elseif ("liefer" == $_GET['section']) {
|
||||
include "pdf/liefer_pdf.php";
|
||||
} elseif ("gut" == $_GET['section']) {
|
||||
include "pdf/gut_pdf.php";
|
||||
} elseif ("schrift" == $_GET['section']) {
|
||||
include "pdf/schrift_pdf.php";
|
||||
}
|
||||
include "email.php";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n";
|
||||
echo " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n";
|
||||
echo "<html>\n";
|
||||
echo " <head>\n";
|
||||
echo " <title>R!ST - start-up!</title>\n";
|
||||
echo " <link rel=\"stylesheet\" media=\"all\" type=\"text/css\" href=\"css/page.css\" />\n";
|
||||
echo "<!--[if lte IE 7]>\n";
|
||||
echo " <link rel=\"stylesheet\" href=\"css/ie6.css\" type=\"text/css\" />\n";
|
||||
echo "<![endif]-->\n";
|
||||
echo " <meta name=\"description\" content=\"RIST - Pablo Rink und Christian Steinle GbR\" /> \n";
|
||||
echo " <meta name=\"keywords\" content=\"RIST\" /> \n";
|
||||
echo " <meta name=\"Generator\" content=\"RIST (C) 2010. All rights reserved.\" /> \n";
|
||||
echo " <meta name=\"robots\" content=\"index, follow\" /> \n";
|
||||
echo " <link rel=\"shortcut icon\" href=\"favicon.ico\" /> \n";
|
||||
echo " <meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\" /> \n";
|
||||
echo " <meta http-equiv=\"expires\" content=\"0\">\n";
|
||||
echo " <meta http-equiv=\"cache-control\" content=\"no-cache\">\n";
|
||||
echo " <meta http-equiv=\"pragma\" content=\"no-cache\">\n";
|
||||
echo " <script type=\"text/javascript\">\n";
|
||||
?>
|
||||
var sv = '<?php echo $arr_suContent['dropbox']['sv'];?>';
|
||||
var vt = '<?php echo $arr_suContent['dropbox']['vt'];?>';
|
||||
var st = '<?php echo $arr_suContent['dropbox']['st'];?>';
|
||||
var ie = '<?php echo $arr_suContent['dropbox']['ie'];?>';
|
||||
function show_tooltip (section)
|
||||
{
|
||||
document.getElementById('tooltip').style.border = "2px solid black";
|
||||
document.getElementById('tooltip').style.padding = "10px";
|
||||
document.getElementById('tooltip').style.margin = "0px 50px";
|
||||
document.getElementById('tooltip').style.display = "block";
|
||||
document.getElementById('tooltip').style.position = "absolute";
|
||||
document.getElementById('tooltip').style.opacity = "0.9";
|
||||
document.getElementById('tooltip').style.visibility = "visible";
|
||||
document.getElementById('tooltip').style.background = "#FFFFFF";
|
||||
document.getElementById('tooltip').innerHTML = section;
|
||||
document.getElementById('inhalt').style.opacity = "0.1";
|
||||
}
|
||||
function hide_tooltip ()
|
||||
{
|
||||
document.getElementById('tooltip').style.display = "none";
|
||||
document.getElementById('tooltip').style.visibility = "hidden";
|
||||
document.getElementById('inhalt').style.opacity = "1";
|
||||
}
|
||||
<?php
|
||||
echo " </script>\n";
|
||||
if (("schrift" == $_GET['section']) OR ("stamm" == $_GET['section']) OR ("texte" == $_GET['section'])) {
|
||||
echo " <script type=\"text/javascript\" src=\"ckeditor/ckeditor.js\"></script>\n";
|
||||
}
|
||||
echo " </head>\n";
|
||||
|
||||
echo " <body>\n";
|
||||
echo " <div id=\"frame\">\n";
|
||||
echo " <div id=\"header\">\n";
|
||||
include "inhalte/header.php";
|
||||
echo " </div>\n";
|
||||
echo " <br class=\"fix\" />\n";
|
||||
echo " <div id=\"links\">\n";
|
||||
include "inhalte/left.php";
|
||||
echo " <br class=\"fix\" />\n";
|
||||
echo " </div>\n";
|
||||
echo " <div id=\"navi2\" />\n";
|
||||
include "inhalte/navi2.php";
|
||||
echo " <br class=\"fix\" />\n";
|
||||
echo " </div>\n";
|
||||
echo " <div id=\"page\">\n";
|
||||
echo " <hr />\n";
|
||||
echo " <div id=\"tooltip\">\n";
|
||||
echo " </div>\n";
|
||||
echo " <div id=\"inhalt\">\n";
|
||||
include "inhalte/inhalt.php";
|
||||
echo " </div>\n";
|
||||
echo " <br class=\"fix\" />\n";
|
||||
echo " </div>\n";
|
||||
echo " </div>\n";
|
||||
echo " <div id=\"footer\">\n";
|
||||
include "inhalte/footer.php";
|
||||
echo " </div>\n";
|
||||
echo " </body>\n";
|
||||
echo "</html>\n";
|
||||
?>
|
||||
21
shop.php
Normal file
21
shop.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<form action="bestellung.php" method="post" target="_blank">
|
||||
<table>
|
||||
<colgroup>
|
||||
<col span="3" width="200" />
|
||||
</colgroup>
|
||||
<tr>
|
||||
<td>
|
||||
<label>ohne Werbung</label><br />
|
||||
<input type="submit" style="height: 128px; width: 128px; background-image: url(./img/best/start_00.png); font-size: 0px;" name="prod" value="start_00" />
|
||||
</td>
|
||||
<td>
|
||||
<label>Werbung im Fußbereich</label><br />
|
||||
<input type="submit" name="prod" value="start_01" />
|
||||
</td>
|
||||
<td>
|
||||
<label>Werbung im Kopfbereich</label><br />
|
||||
<input type="submit" name="prod" value="start_02" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
Reference in New Issue
Block a user