-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathindex.php
37 lines (34 loc) · 879 Bytes
/
index.php
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
<?
/**
* @author Greedi
* @copyright 2012
*
*/
include ('core/banned.php');
include ('core/wallet.php');
include ('templates/header.php');
//include ('core/dnsbl.php');
?>
<div class="row">
<div class="span10">
<?
echo '<h4><center>Payout will happen when there are atleast <strong>**</strong> submitted!<br></h4>
You can only enter once per round, if we detect the same IP or a proxy, you\'ll not be paid.';
?>
<style>
.tdr{text-align:right;}
</style>
<center><br>
<form action="submitted.php" method="post">
<td class="tdr"><font color="green">Your Litecoin Address Here:</font></td>
<td><input type="text" name="LTC"></td>
<?php
echo GetCaptcha($adscaptchaID, $adspubkey);
?>
<td colspan="3" align="center"><input type="submit" value="Submit"></td>
</center>
</div>
<?
include ("templates/sidebar.php");
include ('templates/footer.php');
?>