Пример #1
0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>SFSDB - Add Steam Account</title>
	<link rel="stylesheet" href="css/main.css">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<?php 
require 'classes/Functions.php';
// Define functions class
$functions = new accDBFunctions();
?>
<body>
<br />
<center>
<!-- MENU -->
<strong><span style="font-size: 10px;">Logged in as:</strong> <?php 
echo '<span style="font-size: 10px">' . $_SESSION['user_name'];
?>
 <b>[</b><?php 
echo $functions->GetUserAccSold($_SESSION['user_name']);
?>
 Sold<b>]</b> | <img src='images/actions/user.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='user.php'>My Profile</a> | <img src='images/actions/add.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='add.php'>Add Steam Account</a> | <img src='images/actions/cart.png' style='vertical-align: middle; margin-bottom: 3px' /> <a href='store.php'>Store</a> | <img src='images/actions/message.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='updatemsg.php'>Set/Disable Message</a> | <img src='images/actions/stats.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='stats.php'>Sale Statistics</a> | <img src='images/actions/out.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='?logout'>Logout</a></span><br />
<!-- END MENU --><img src='../images/style/login_logo.png' /><br />
<form action='doaddacc.php' method='post'>
<input type='text' placeholder='Username' name='username' class="textbox_user" required /><br /><br />
<input type='text' placeholder='Password' name='password' class="textbox_user" required /><br /><br />
<input type='hidden' value='<?php 
echo $_SESSION['user_name'];
?>
Пример #2
0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>SFSDB - Update Account</title>
	<link rel="stylesheet" href="css/main.css">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<br />
<?php 
require 'classes/Functions.php';
// Define functions class
$functions = new accDBFunctions();
?>
<center>
<!-- MENU -->
<strong><span style="font-size: 10px;">Logged in as:</strong> <?php 
echo '<span style="font-size: 10px">' . $_SESSION['user_name'];
?>
 <b>[</b><?php 
echo $functions->GetUserAccSold($_SESSION['user_name']);
?>
 Sold<b>]</b> | <img src='images/actions/user.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='user.php'>My Profile</a> | <img src='images/actions/add.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='add.php'>Add Steam Account</a> | <img src='images/actions/cart.png' style='vertical-align: middle; margin-bottom: 3px' /> <a href='store.php'>Store</a> | <img src='images/actions/message.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='updatemsg.php'>Set/Disable Message</a> | <img src='images/actions/stats.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='stats.php'>Sale Statistics</a> | <img src='images/actions/out.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='?logout'>Logout</a></span><br />
<!-- END MENU -->
<img src='../images/style/login_logo.png' /><br />
<form action='doupdateacc.php' method='post'>
<input type='text' value='<?php 
echo $_POST['accname'];
?>
' name='username' class="textbox_user" readonly  /><br /><br />
Пример #3
0
<?php

include 'classes/functions.php';
$functions = new accDBFunctions();
// So now we update the steam account
$functions->DeleteAccount((int) $_POST['update']);
header("refresh:0; url=index.php");
Пример #4
0
<?php

include 'classes/functions.php';
$functions = new accDBFunctions();
// So now we update the steam account
$functions->UpdateAccount($_POST['username'], $_POST['password'], $_POST['description']);
header("refresh:0; url=index.php");
Пример #5
0
<?php

include 'classes/functions.php';
$functions = new accDBFunctions();
// So now we update the steam account
$functions->UpdateStatusUnsold((int) $_POST['update']);
header("refresh:0; url=index.php");
Пример #6
0
<meta charset="UTF-8">
<title>SFSDB - User: <?php 
echo $_SESSION['user_name'];
?>
</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/pagination.css">
</head>
<body>

<br />
<center>
<?php 
// Define functions class
require 'classes/Functions.php';
$functions = new accDBFunctions();
?>
<!-- MENU -->
<strong><span style="font-size: 10px;">Logged in as:</strong> <?php 
echo '<span style="font-size: 10px">' . $_SESSION['user_name'];
?>
 <b>[</b><?php 
echo $functions->GetUserAccSold($_SESSION['user_name']);
?>
 Sold<b>]</b> | <img src='images/actions/user.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='user.php'>My Profile</a> | <img src='images/actions/add.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='add.php'>Add Steam Account</a> | <img src='images/actions/cart.png' style='vertical-align: middle; margin-bottom: 3px' /> <a href='store.php'>Store</a> | <img src='images/actions/message.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='updatemsg.php'>Set/Disable Message</a> | <img src='images/actions/stats.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='stats.php'>Sale Statistics</a> | <img src='images/actions/out.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='?logout'>Logout</a></span><br />
<!-- END MENU -->
<img src="images/style/login_logo.png" style="margin-left: 25px" />
<b><div class='motd'><div class='motdbackground'><div class='motdinner'><span style='color: white'>Store</span></b><br /><br />
<b>Welcome to the store! Here you can buy cool stuff for your profile and other stuff!</b>
</span>
</div>
Пример #7
0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<?php 
include 'classes/Functions.php';
include 'classes/pData.class';
include 'classes/pChart.class';
// Define functions class
$functions = new accDBFunctions();
?>

<head>
    <title>SFSDB - Statistics</title>
	<link rel="stylesheet" href="css/main.css">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<br />
<center>
<!-- MENU -->
<strong><span style="font-size: 10px;">Logged in as:</strong> <?php 
echo '<span style="font-size: 10px">' . $_SESSION['user_name'];
?>
 <b>[</b><?php 
echo $functions->GetUserAccSold($_SESSION['user_name']);
?>
 Sold<b>]</b> | <img src='images/actions/user.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='user.php'>My Profile</a> | <img src='images/actions/add.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='add.php'>Add Steam Account</a> | <img src='images/actions/cart.png' style='vertical-align: middle; margin-bottom: 3px' /> <a href='store.php'>Store</a> | <img src='images/actions/message.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='updatemsg.php'>Set/Disable Message</a> | <img src='images/actions/stats.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='stats.php'>Sale Statistics</a> | <img src='images/actions/out.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='?logout'>Logout</a></span><br />
<!-- END MENU -->
<img src='../images/style/login_logo.png' />
<br>
<br>
Пример #8
0
<meta charset="UTF-8">
<title>SFSDB - User: <?php 
echo $_SESSION['user_name'];
?>
</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/pagination.css">
</head>
<body>

<br />
<center>
<?php 
// Define functions class
require 'classes/Functions.php';
$functions = new accDBFunctions();
?>
<!-- MENU -->
<strong><span style="font-size: 10px;">Logged in as:</strong> <?php 
echo '<span style="font-size: 10px">' . $_SESSION['user_name'];
?>
 <b>[</b><?php 
echo $functions->GetUserAccSold($_SESSION['user_name']);
?>
 Sold<b>]</b> | <img src='images/actions/user.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='user.php'>My Profile</a> | <img src='images/actions/add.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='add.php'>Add Steam Account</a> | <img src='images/actions/cart.png' style='vertical-align: middle; margin-bottom: 3px' /> <a href='store.php'>Store</a> | <img src='images/actions/message.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='updatemsg.php'>Set/Disable Message</a> | <img src='images/actions/stats.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='stats.php'>Sale Statistics</a> | <img src='images/actions/out.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a href='?logout'>Logout</a></span><br />
<!-- END MENU -->
<img src="images/style/login_logo.png" style="margin-left: 25px" />
<b><div class='motd'><div class='motdbackground'><div class='motdinner'><span style='color: white'><?php 
echo $_SESSION['user_name'];
?>
 :: Profile</span></b><br /><br />
Пример #9
0
<?php

include 'classes/functions.php';
include 'classes/SBBCodeParser.php';
$functions = new accDBFunctions();
$parser = new \SBBCodeParser\Node_Container_Document();
// So now we update the steam account
$functions->UpdateMessage($_POST['title'], $parser->parse($_POST['message'])->get_html());
header("refresh:0; url=index.php");
Пример #10
0
<?php

include 'classes/functions.php';
$functions = new accDBFunctions();
// So now we update the steam account
$functions->UpdateStatus($_POST['username'], $_POST['sellvalue']);
header("refresh:0; url=index.php");
Пример #11
0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<title>SFSDB - Main</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/pagination.css">
</head>
<body>
<?php 
require 'classes/paginator.php';
require 'classes/Functions.php';
include 'classes/SBBCodeParser.php';
// Define functions class
$functions = new accDBFunctions();
?>
<center>
<br />
<!-- MENU -->
<strong><span style="font-size: 10px; color: #000000">Logged in as:</strong> <span style='color: #000000'><?php 
echo '<span style="font-size: 10px">' . $_SESSION['user_name'];
?>
 <b>[</b><?php 
echo $functions->GetUserAccSold($_SESSION['user_name']);
?>
 Sold<b>]</span></b> | <img src='images/actions/user.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a class='menu' href='user.php'>My Profile</a> | <img src='images/actions/add.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a class='menu' href='add.php'>Add Steam Account</a> | <img src='images/actions/cart.png' style='vertical-align: middle; margin-bottom: 3px' /> <a class='menu' href='store.php'>Store</a> | <img src='images/actions/message.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a class='menu' href='updatemsg.php'>Set/Disable Message</a> | <img src='images/actions/stats.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a class='menu' href='stats.php'>Sale Statistics</a> | <img src='images/actions/out.png' style="vertical-align: middle; margin-bottom: 3px;" /> <a class='menu' href='?logout'>Logout</a></span><br />
<!-- END MENU -->

<img src="images/style/login_logo.png" style="margin-left: 25px" />
<b><div class='motd' style='margin-bottom: -1.5%'><div class='motdbackground'><div class='motdinner'><span style='color: white'>Payment Details</span></b><br /><br /><b>j0rpi<br /><br /><div style='width: 50%; background: rgba(0,0,0,0.2); padding: 5px; border-radius: 6px;'>PayPal: stempunksf@gmail.com<br />BTC: 1FuBA8wdSLmEJNo1mR2gDkACfa7c9QXobo</div><br />FallbackeN<br /><br /><div style='width: 50%; background: rgba(0,0,0,0.2); padding: 5px; border-radius: 6px;'>PayPal: puresavage99@gmail.com</b><br /></div></div></div></div><br /><br /><br /><br /><br /><br /><br /><br />
Пример #12
0
<?php

include 'classes/functions.php';
$functions = new accDBFunctions();
// So now we update the steam account
$functions->AddSteamAccount($_POST['username'], $_POST['password'], $_POST['desc'], $_POST['seller']);
header("refresh:0; url=index.php");