neropay/physprep.php
2025-03-06 14:50:41 -05:00

51 lines
1.5 KiB
PHP

<?php
/*********************************************
* Description - Neropay payment system
*
* physorder.php -- Ask the user for extra information
* such as shipping details or XMPP contact
* Author - Vilyaem
* *******************************************/
if($_SERVER['REQUEST_METHOD'] != 'GET'){
header("Location: index.php");
exit;
}
else{
$item = isset($_GET['item']) ? $_GET['item'] : '';
$item = isset($_GET['wow']) ? $_GET['wow'] : '';
$addr = isset($_GET['addr']) ? $_GET['addr'] : '';
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Neropay</title>
</head>
<style>
body{font-family:Courier;};
</style>
<body>
<center>
<h1>Neropay</h1>
<small>A tiny Monero payment system</small></br>
<form action="index.php" method="get">
<textarea type="text" id="addr" name="addr" rows=16 cols=64 maxlength=1024 autofocus required placeholder="Please put contact or shipping information here, don't make a fool of yourself."></textarea>
<input type="hidden" id="item" name="item" value="<?php echo htmlspecialchars($item) ?>"></textarea>
<input type="hidden" id="wow" name="wow" value="<?php echo htmlspecialchars($wow) ?>"></textarea>
</br>
<input type="submit" value="Submit">
</form>
<p>
<small>Note: Payments may take a couple minutes to go through.
</br>Report irregularities or problems to kenyaz [at] vilyaem.xyz</small>
</br><strong>WARNING: Monero might liberate you.</strong>
</p>
</center>
</body>
</html>