Advertisement
Guest User

refer.html

a guest
Jul 4th, 2014
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.81 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4.     <meta charset="UTF-8">
  5.     <title></title>
  6.  
  7.     <style>
  8.         form {
  9.             position: relative;
  10.             clear: both;
  11.         }
  12.  
  13.         label {
  14.             display: block;
  15.             width: 125px;
  16.             float: left;
  17.             text-align: right;
  18.             padding-right: 15px;
  19.         }
  20.  
  21.         button {
  22.             clear: both;
  23.             display: block;
  24.             position: absolute;
  25.             right: 9%;
  26.             top: 115%;
  27.         }
  28.        
  29.        .fieldBtns {
  30.            height: 18px;
  31.            width: auto;
  32.            cursor: pointer;
  33.        }
  34.  
  35.        #userInfo {
  36.            padding-bottom: 20px;
  37.            border-bottom: 1px solid #AAA;
  38.            margin-bottom: 20px;
  39.        }
  40.  
  41.        #minBtn {
  42.            display: none;
  43.        }
  44.  
  45.         #referralWidget {
  46.             width: 400px;
  47.         }
  48.  
  49.         #right {
  50.             float: right;
  51.         }
  52.  
  53.         #left {
  54.             float: left;
  55.         }
  56.     </style>
  57. </head>
  58. <body>
  59.     <div id="referralWidget">
  60.         <h2>Refer a Friend</h2>
  61.         <p>We're giving awesome rewards for both you and your friend when you refer people to Arithia!</p>
  62.  
  63.         <div id="left">
  64.             <p><b>You Get</b></p>
  65.             <ul>
  66.                 <li>300 Credit Points</li>
  67.                 <li>50 Ducats</li>
  68.                 <li>Infernal Lockbox</li>
  69.             </ul>
  70.         </div>
  71.  
  72.         <div id="right">
  73.             <p><b>Your Friend Gets</b></p>
  74.             <ul>
  75.                 <li>300 Credit Points</li>
  76.                 <li>A "Head Start" Pack</li>
  77.                 <ul>
  78.                     <li>50 Ducats</li>
  79.                     <li>25 Cooked Beef</li>
  80.                     <li>Identification Tome</li>
  81.                 </ul>
  82.             </ul>
  83.         </div>
  84.  
  85.         <form action="http://www.graphicgoldfish.com/referral/php/generator.php" method="POST">
  86.             <h2>Send them an email!</h2>
  87.             <p>Here's how you and your friends can cash in on the rewards!</p>
  88.             <div id="userInfo">
  89.                 <label for="tf_ref_email">Your Email:</label> <input type="email" id="tf_ref_email" name="tf_ref_email" />
  90.                 <label for="tf_ref_username">Arithia Username:</label> <input type="text" id="tf_ref_username" name="tf_ref_username" />
  91.                 <label for="tf_ref_ign">Minecraft IGN:</label> <input type="text" id="tf_ref_ign" name="tf_ref_ign" />
  92.             </div>
  93.  
  94.             <div id="friends">
  95.                 <img class="fieldBtns" src="images/plus_button.png" id="addBtn"/>
  96.                 <img class="fieldBtns" src="images/minus_button.png" id="minBtn"/>
  97.             </div>
  98.             <button>Submit</button>
  99.         </form>
  100.     </div>
  101.     <script src="js/main.js"></script>
  102. </body>
  103. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement