• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Donation Terms & Agreements

DonHagman

Chill'Reward2014
Joined
Dec 26, 2010
Messages
877
Reaction score
191
Location
Dudeland, Macronesia
Hello!

I am trying to fix Terms & Agreements about the donations, but I am not that good..
Might need some help!


This is how I want it to work:

When clicking "Donate to get points" at the website, I would like you to get linked to the Terms & Agreements, where you have to click "Agree" BEFORE you can proceed to the donation page.


I do got the script, I just need to know Where to put it and what scripts I should config and with what, to make it work.


Script:
Code:
<style type="text/css">
<!--
.Estilo1 {
	font-size: x-small;
	font-weight: bold;
}
-->
</style>
<div align="center">
<table width="383">
  <tbody>
    <tr >
      <td width="50%"><b>Terms and agreements.</b><br />
        <span class="Estilo1">If you do not agree with these terms you are not allowed to donate.</span></td>
      </tr>
    <tr >
      <td><div >
        <textarea name="textarea" cols="60" rows="10" readonly="true" wrap="physical" font-family="verdana">* We do not refund any payments, donations.
* If you are under 18 years old you need to have your parents permission.
* If you lose any donation items you will not get it back
* We have the rights to modify any of the donation items.
* We have the rights to change the prices whenever we want.
* We have the rights to reset the server whenever we want.
* We have the rights to change the terms and agreements whenever we want.
        </textarea>
        <center><form action="?subtopic=buypoints" method="post">
						<input value="I Agree" type="submit">
        </form> </center>       
      </div></td>
      </tr>
  </tbody>
</table>
</div>


Using Gesior AAC
Would love if someone could help me out here, Rep++.


Thanks in advice
Hagman:ninja:
 
Last edited:
Open your donations .php file and add this:
PHP:
if(isset($_GET['read']) && $_GET['read'] == 'terms')
{
	echo '<style type="text/css">
<!--
.Estilo1 {
	font-size: x-small;
	font-weight: bold;
}
-->
</style>
<div align="center">
<table width="383">
  <tbody>
    <tr >
      <td width="50%"><b>Terms and agreements.</b><br />
        <span class="Estilo1">If you do not agree with these terms you are not allowed to donate.</span></td>
      </tr>
    <tr >
      <td><div >
        <textarea name="textarea" cols="60" rows="10" readonly="true" wrap="physical" font-family="verdana">* We do not refund any payments, donations.
* If you are under 18 years old you need to have your parents permission.
* If you lose any donation items you will not get it back
* We have the rights to modify any of the donation items.
* We have the rights to change the prices whenever we want.
* We have the rights to reset the server whenever we want.
* We have the rights to change the terms and agreements whenever we want.
        </textarea>
        <center><form action="?subtopic=buypoints" method="post">
						<input value="I Agree" type="submit">
        </form> </center>       
      </div></td>
      </tr>
  </tbody>
</table>
';
}
Or you can simply create a new file named terms.php and put this in there:
PHP:
echo '<style type="text/css">
<!--
.Estilo1 {
	font-size: x-small;
	font-weight: bold;
}
-->
</style>
<div align="center">
<table width="383">
  <tbody>
    <tr >
      <td width="50%"><b>Terms and agreements.</b><br />
        <span class="Estilo1">If you do not agree with these terms you are not allowed to donate.</span></td>
      </tr>
    <tr >
      <td><div >
        <textarea name="textarea" cols="60" rows="10" readonly="true" wrap="physical" font-family="verdana">* We do not refund any payments, donations.
* If you are under 18 years old you need to have your parents permission.
* If you lose any donation items you will not get it back
* We have the rights to modify any of the donation items.
* We have the rights to change the prices whenever we want.
* We have the rights to reset the server whenever we want.
* We have the rights to change the terms and agreements whenever we want.
        </textarea>
        <center><form action="?subtopic=buypoints" method="post">
						<input value="I Agree" type="submit">
        </form> </center>       
      </div></td>
      </tr>
  </tbody>
</table>
';
[/php]
 
Back
Top