Advertisement
MiB3Avenger

PHP Pages

Sep 19th, 2014
673
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 40.03 KB | None | 0 0
  1. Page 1
  2. ______________________________________________________________________________________________________________________________________
  3. <?php
  4. //Session starts here
  5. session_start();
  6. $_SESSION['igaccname'] = $_POST['igaccname'];
  7. $_SESSION['igname'] = $_POST['igname'];
  8. $_SESSION['nation'] = $_POST['namenation'];
  9. $_SESSION['age'] = $_POST['age'];
  10. $_SESSION['engskills'] = $_POST['engskills'];
  11. $_SESSION['time'] = $_POST['time'];
  12. $_SESSION['gender'] = $_POST['gender'];
  13. ?><!DOCTYPE HTML>
  14. <html>
  15.     <head>
  16.         <title>xvtt Application Center</title>
  17.         <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  18.         <meta name="description" content="" />
  19.         <meta name="keywords" content="" />
  20.         <!--[if lte IE 8]><script src="css/ie/html5shiv.js"></script><![endif]-->
  21.         <script src="js/jquery.min.js"></script>
  22.         <script src="js/jquery.dropotron.min.js"></script>
  23.         <script src="js/skel.min.js"></script>
  24.         <script src="js/skel-layers.min.js"></script>
  25.         <script src="js/init.js"></script>
  26.         <noscript>
  27.             <link rel="stylesheet" href="css/skel.css" />
  28.             <link rel="stylesheet" href="css/style.css" />
  29.             <link rel="stylesheet" href="css/style-desktop.css" />
  30.         </noscript>
  31.         <!--[if lte IE 8]><link rel="stylesheet" href="css/ie/v8.css" /><![endif]-->
  32.     </head>
  33.    <body class="homepage">
  34.  
  35.         <!-- Header -->
  36.             <div id="header-wrapper" class="wrapper">
  37.                 <div id="header">
  38.                    
  39.                     <!-- Logo -->
  40.                         <div id="logo">
  41.                             <h1>xvtt Application Center</h1>
  42.                             <p>New way to apply for xvtt!</p>
  43.                         </div>
  44.                    
  45.                     <!-- Nav -->
  46.                         <nav id="nav">
  47.                             <ul>
  48.                                 <li class="current"><a href="http://xvtt.site88.net/homepage.html">Home</a></li>
  49.                                 <li><a href="http://xvtt.site88.net/application.php">Application Center</a></li>
  50.                                 <li><a href="http://xvtt.site88.net/index.php?action=forum">Forum</a></li>
  51.                                 <li><a href="http://cit2.net/index.php?board=448.0">Board</a></li>
  52.                                 <li><a href="http://cit2.net/index.php?topic=115441.0">Chit Chat</a></li>
  53.                             </ul>
  54.                         </nav>
  55.  
  56.                 </div>
  57.             </div>
  58.            
  59.             <!-- Intro -->
  60.             <div id="intro-wrapper" class="wrapper style1">
  61.                 <div class="title">Application</div>
  62.                 <section id="intro" class="container">
  63.                     <p class="style1">xvtt Application Center</p>
  64.                     <p class="style2">
  65.                     <img src="http://i.imgur.com/LmrbiAe.png"><br class="mobile-hide" />
  66.                     Applicant's Information
  67.                     </p>
  68.                 <span id="error">
  69.             <!----Initializing Session for errors--->
  70.                     <?php
  71.                     if (!empty($_SESSION['error'])) {
  72.                         echo $_SESSION['error'];
  73.                         unset($_SESSION['error']);
  74.                     }
  75.                     ?>
  76.                 </span>
  77.                 <form action="page2_form.php" method="post">
  78.  
  79.  
  80.                     <label>Your In-Game Account Name: <span>*</span></label><br />
  81.                     <input name="igaccname" type="text" placeholder="In-Game Account Name" required>
  82.                     <br />
  83.  
  84.                     <label>Your In-Game Name: <span>*</span></label><br />
  85.                     <input name="igname" type="text" placeholder="In-Game Name" required>
  86.                     <br />
  87.  
  88.                     <label>Your Nationality: <span>*</span></label><br />
  89.                     <input name="nation" type="text" placeholder="Your Nationality" required>
  90.                     <br />
  91.  
  92.                     <label>Your Age: <span>*</span></label><br />
  93.                     <input name="age" type="text"  placeholder="Your Age" />
  94.  
  95.                     <br />
  96.                     <label>Your English Skills (?/10): <span>*</span></label><br />
  97.                     <input name="engskills" type="text" placeholder="Your English Skills (?/10)" >
  98.                    
  99.                     <br />
  100.                     <label>Your Timezone (GMT): <span>*</span></label><br />
  101.                     <input name="time" type="text" placeholder="Your Timezone (GMT)" >
  102.                    
  103.                     <br />
  104.                     <label>Your Gender: <span>*</span></label><br />
  105.                     <input name="gender" type="text" placeholder="Your Gender" >
  106.                     <br />
  107.  
  108.                     <input  type="reset" value="Reset" class="button style3 big" />
  109.                     <input  type="submit" value="Next" class="button style3 big" />
  110.  
  111.                 </form>
  112.             </div>
  113.             </section>
  114.         </div>
  115.     </body>
  116. </html>
  117. _______________________________________________________________________________________________________________________________________
  118. Page 2
  119. _______________________________________________________________________________________________________________________________________
  120. <?php
  121. session_start();
  122. //checking first page values for empty,If it finds any blank field then redirected to first page
  123. if (isset($_POST['igaccname'])){
  124.     if (empty($_POST['igaccname'])
  125.     || empty($_POST['igname'])
  126.     || empty($_POST['igname'])
  127.     || empty($_POST['age'])
  128.     || empty($_POST['engskills'])
  129.     || empty($_POST['time'])
  130.     || empty($_POST['gender'])){
  131.        
  132.         //setting error message
  133.         $_SESSION['error'] = "Mandatory field(s) are missing, Please fill it again";
  134.         header("location: page1_form.php"); //redirecting to first page
  135.    
  136.     } else {
  137.     //Validating Contact Field  using regex
  138.             if (!preg_match("/^[0-9]{1}$/", $_POST['engskills'])){
  139.            
  140.                 $_SESSION['error'] = "Numbers are required not Characters.";
  141.                 header("location: page1_form.php");
  142.             }
  143.        
  144.     //Validating Contact Field  using regex
  145.             if (!preg_match("/^[0-9]{2}$/", $_POST['age'])){
  146.            
  147.                 $_SESSION['error'] = "Numbers are required not Characters.";
  148.                 header("location: page1_form.php");
  149.             }
  150.         }
  151. } else {
  152.     if (empty($_SESSION['error_page2'])) {
  153.         header("location: page1_form.php");//redirecting to first page
  154.     }
  155. }
  156. ?>
  157. <!DOCTYPE HTML>
  158. <html>
  159.     <head>
  160.         <title>xvtt Application Center</title>
  161.         <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  162.         <meta name="description" content="" />
  163.         <meta name="keywords" content="" />
  164.         <!--[if lte IE 8]><script src="css/ie/html5shiv.js"></script><![endif]-->
  165.         <script src="js/jquery.min.js"></script>
  166.         <script src="js/jquery.dropotron.min.js"></script>
  167.         <script src="js/skel.min.js"></script>
  168.         <script src="js/skel-layers.min.js"></script>
  169.         <script src="js/init.js"></script>
  170.         <noscript>
  171.             <link rel="stylesheet" href="css/skel.css" />
  172.             <link rel="stylesheet" href="css/style.css" />
  173.             <link rel="stylesheet" href="css/style-desktop.css" />
  174.         </noscript>
  175.         <!--[if lte IE 8]><link rel="stylesheet" href="css/ie/v8.css" /><![endif]-->
  176.     </head>
  177.     <body class="homepage">
  178.  
  179.         <!-- Header -->
  180.             <div id="header-wrapper" class="wrapper">
  181.                 <div id="header">
  182.                    
  183.                     <!-- Logo -->
  184.                         <div id="logo">
  185.                             <h1>xvtt Application Center</h1>
  186.                             <p>New way to apply for xvtt!</p>
  187.                         </div>
  188.                    
  189.                     <!-- Nav -->
  190.                         <nav id="nav">
  191.                             <ul>
  192.                                 <li class="current"><a href="http://xvtt.site88.net/homepage.html">Home</a></li>
  193.                                 <li><a href="http://xvtt.site88.net/application.php">Application Center</a></li>
  194.                                 <li><a href="http://xvtt.site88.net/index.php?action=forum">Forum</a></li>
  195.                                 <li><a href="http://cit2.net/index.php?board=448.0">Board</a></li>
  196.                                 <li><a href="http://cit2.net/index.php?topic=115441.0">Chit Chat</a></li>
  197.                             </ul>
  198.                         </nav>
  199.  
  200.                 </div>
  201.             </div>
  202.             <!-- Intro -->
  203.             <div id="intro-wrapper" class="wrapper style1">
  204.                 <div class="title">Application</div>
  205.                 <section id="intro" class="container">
  206.                     <p class="style1">xvtt Application Center</p>
  207.                     <p class="style2">
  208.                         <img src="http://i.imgur.com/8pCuJBA.png"><br class="mobile-hide" />
  209.                         CIT Life Information
  210.                     </p>
  211.                 <span id="error">
  212. <?php
  213. //To show error of page 2
  214. if (!empty($_SESSION['error_page2'])) {
  215.     echo $_SESSION['error_page2'];
  216.     unset($_SESSION['error_page2']);
  217. }
  218. ?>
  219.                 </span>
  220.                 <form action="page3_form.php" method="post">
  221.                     <label>About your CIT Life (Atleast 50 Words): <span>*</span></label><br />
  222.                     <textarea name="citlife" id="religion" placeholder="About your CIT Life (Atleast 50 Words)" ></textarea>
  223.                     <br />
  224.                    
  225.                     <label>About yourself (Atleast 50 Words): <span>*</span></label><br />
  226.                     <textarea name="yourself" id="religion" placeholder="About yourself (Atleast 50 Words)" ></textarea>
  227.                     <br />
  228.                    
  229.                     <label>Why you want to join xvtt?: <span>*</span></label><br />
  230.                     <textarea name="whyxvtt" id="religion" placeholder="Why you want to join xvtt?" ></textarea>
  231.                     <br />
  232.  
  233.                     <label>Your Strengths: <span>*</span></label><br />
  234.                     <input name="strengths" id="nationality" type="text" value="" placeholder="Your Strengths" >
  235.                     <br />
  236.                    
  237.                     <label>Your Weakness: <span>*</span></label><br />
  238.                     <input name="weakness" id="nationality" type="text" value="" placeholder="Your Weakness" >
  239.                     <br />
  240.                    
  241.                     <label>Previous Gangs: <span>*</span></label><br />
  242.                     <input name="prevgangs" id="nationality" type="text" value="" placeholder="Previous Gangs" >
  243.                     <br />
  244.                    
  245.                     <label>Previous Business: <span>*</span></label><br />
  246.                     <input name="prevbusiness" id="nationality" type="text" value="" placeholder="Previous Business" >
  247.                     <br />
  248.                    
  249.                     <label>Reason for leaving your Old Squad: <span>*</span></label><br />
  250.                     <input name="oldsquad" id="nationality" type="text" value="" placeholder="Reason for leaving your Old Squad" >
  251.                     <br />
  252.                    
  253.  
  254.                     <input  type="reset" value="Reset" class="button style3 big" />
  255.                     <input  type="submit" value="Next" class="button style3 big" />
  256.  
  257.                 </form>
  258.             </div>
  259.             </section>
  260.         </div>
  261.     </body>
  262. </html>
  263. _______________________________________________________________________________________________________________________________________
  264. Page 3
  265. _______________________________________________________________________________________________________________________________________
  266. <?php
  267. session_start();
  268. //checking second page values for empty,If it finds any blank field then redirected to second page
  269. if (isset($_POST['citlife'])){
  270.     if (empty($_POST['citlife'])
  271.     || empty($_POST['yourself'])
  272.     || empty($_POST['whyxvtt'])
  273.     || empty($_POST['strengths'])
  274.     || empty($_POST['weakness'])
  275.     || empty($_POST['prevgangs'])
  276.     || empty($_POST['prevbusiness'])
  277.     || empty($_POST['oldsquad'])){
  278.        
  279.         //setting error message
  280.         $_SESSION['error_page2'] = "Mandatory field(s) are missing, Please fill it again";
  281.         header("location: page2_form.php");//redirecting to second page
  282.    
  283.     } else {
  284.         //fetching all values posted from second page and storing it in variable
  285.         foreach ($_POST as $key => $value) {
  286.             $_SESSION['post'][$key] = $value;
  287.         }
  288.     }
  289. } else {
  290.     if (empty($_SESSION['error_page3'])) {
  291.         header("location: page1_form.php");//redirecting to first page
  292.     }
  293. }
  294. ?>
  295. <!DOCTYPE HTML>
  296. <html>
  297.     <head>
  298.        <title>xvtt Application Center</title>
  299.         <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  300.         <meta name="description" content="" />
  301.         <meta name="keywords" content="" />
  302.         <!--[if lte IE 8]><script src="css/ie/html5shiv.js"></script><![endif]-->
  303.         <script src="js/jquery.min.js"></script>
  304.         <script src="js/jquery.dropotron.min.js"></script>
  305.         <script src="js/skel.min.js"></script>
  306.         <script src="js/skel-layers.min.js"></script>
  307.         <script src="js/init.js"></script>
  308.         <noscript>
  309.             <link rel="stylesheet" href="css/skel.css" />
  310.             <link rel="stylesheet" href="css/style.css" />
  311.             <link rel="stylesheet" href="css/style-desktop.css" />
  312.         </noscript>
  313.         <!--[if lte IE 8]><link rel="stylesheet" href="css/ie/v8.css" /><![endif]-->
  314.     </head>
  315.     <body class="homepage">
  316.  
  317.         <!-- Header -->
  318.             <div id="header-wrapper" class="wrapper">
  319.                 <div id="header">
  320.                    
  321.                     <!-- Logo -->
  322.                         <div id="logo">
  323.                             <h1>xvtt Application Center</h1>
  324.                             <p>New way to apply for xvtt!</p>
  325.                         </div>
  326.                    
  327.                     <!-- Nav -->
  328.                         <nav id="nav">
  329.                             <ul>
  330.                                 <li class="current"><a href="http://xvtt.site88.net/homepage.html">Home</a></li>
  331.                                 <li><a href="http://xvtt.site88.net/application.php">Application Center</a></li>
  332.                                 <li><a href="http://xvtt.site88.net/index.php?action=forum">Forum</a></li>
  333.                                 <li><a href="http://cit2.net/index.php?board=448.0">Board</a></li>
  334.                                 <li><a href="http://cit2.net/index.php?topic=115441.0">Chit Chat</a></li>
  335.                             </ul>
  336.                         </nav>
  337.  
  338.                 </div>
  339.             </div>
  340.             <!-- Intro -->
  341.             <div id="intro-wrapper" class="wrapper style1">
  342.                 <div class="title">Application</div>
  343.                 <section id="intro" class="container">
  344.                     <p class="style1">xvtt Application Center</p>
  345.                     <p class="style2">
  346.                         <img src="http://i.imgur.com/puMFPyH.png"><br class="mobile-hide" />
  347.                     </p>
  348.                 <span id="error">
  349.                     <?php
  350.                     if (!empty($_SESSION['error_page3'])) {
  351.                         echo $_SESSION['error_page3'];
  352.                         unset($_SESSION['error_page3']);
  353.                     }
  354.                     ?>
  355.                 </span>
  356.                 <form action="submit.php" method="post">
  357.  
  358.                     <label>Screenshot of your Stats: <span>*</span></label><br />
  359.                     <input name="stats" id="address1" type="text" size="30" placeholder="Screenshot of your Stats (Link Only)" required>
  360.                     <br />
  361.  
  362.                     <label>Screenshot of your Punishlog: <span>*</span></label><br />
  363.                     <input name="punish" id="city" type="text" size="25" placeholder="Screenshot of your Punishlog (Link Only)" required>
  364.                     <br/>
  365.  
  366.                     <label>Screenshot of your Ciminal Level: <span>*</span></label><br />
  367.                     <input name="crimlvl" id="pin" type="text" size="10" placeholder="Screenshot of your Ciminal Level (Link Only)" required>
  368.                     <br/>
  369.                    
  370.                     <section id="intro" class="container">
  371.                     <p class="style2">
  372.                         <img src="http://i.imgur.com/1rV2kRe.png"><br class="mobile-hide" />
  373.                     </p>
  374.                     </section>
  375.  
  376.                     <label>Once You are accepted you will obey CIT & xvtt rules (Y/N): <span>*</span></label><br />
  377.                     <input name="xvttrules" id="state" type="text" size="30" placeholder="Once You are accepted you will obey CIT & xvtt rules (Y/N)" required>
  378.                     <br/>
  379.  
  380.                     <label>I will flame to my xvtt members (Y/N): <span>*</span></label><br />
  381.                     <input name="xvttm" id="state" type="text" size="30" placeholder="I will flame to my xvtt members (Y/N)" required>
  382.                     <br/>
  383.  
  384.                     <label>I will obey Senior rank's orders (Y/N): <span>*</span></label><br />
  385.                     <input name="orders" id="state" type="text" size="30" placeholder="I will obey Senior rank's orders (Y/N)" required>
  386.                     <br/>
  387.  
  388.                     <label>I will respect all xvtt & CIT members (Y/N): <span>*</span></label><br />
  389.                     <input name="respect" id="state" type="text" size="30" placeholder="I will respect all xvtt & CIT members (Y/N)" required>
  390.                     <br/>
  391.  
  392.                     <label>I will troll my xvtt members (Y/N): <span>*</span></label><br />
  393.                     <input name="troll" id="state" type="text" size="30" placeholder="I will troll my xvtt members (Y/N)" required>
  394.                     <br/>
  395.  
  396.                     <input  type="reset" value="Reset" class="button style3 big" />
  397.                     <input name="submit" type="submit" value="Submit" class="button style3 big" />
  398.  
  399.                 </form>
  400.                 </section>
  401.             </div>
  402.         </div>
  403.     </body>
  404. </html>
  405. _______________________________________________________________________________________________________________________________________
  406. Page 4 (Submit Page)
  407. _______________________________________________________________________________________________________________________________________
  408.  
  409. <?php
  410. session_start();
  411. ?>
  412. <!DOCTYPE HTML>
  413. <html>
  414.     <head>
  415.        <title>xvtt Application Center</title>
  416.         <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  417.         <meta name="description" content="" />
  418.         <meta name="keywords" content="" />
  419.         <!--[if lte IE 8]><script src="css/ie/html5shiv.js"></script><![endif]-->
  420.         <script src="js/jquery.min.js"></script>
  421.         <script src="js/jquery.dropotron.min.js"></script>
  422.         <script src="js/skel.min.js"></script>
  423.         <script src="js/skel-layers.min.js"></script>
  424.         <script src="js/init.js"></script>
  425.         <noscript>
  426.             <link rel="stylesheet" href="css/skel.css" />
  427.             <link rel="stylesheet" href="css/style.css" />
  428.             <link rel="stylesheet" href="css/style-desktop.css" />
  429.         </noscript>
  430.         <!--[if lte IE 8]><link rel="stylesheet" href="css/ie/v8.css" /><![endif]-->
  431.     </head>
  432.     <body class="homepage">
  433.  
  434.         <!-- Header -->
  435.             <div id="header-wrapper" class="wrapper">
  436.                 <div id="header">
  437.                    
  438.                     <!-- Logo -->
  439.                         <div id="logo">
  440.                             <h1>xvtt Application Center</h1>
  441.                             <p>New way to apply for xvtt!</p>
  442.                         </div>
  443.                    
  444.                     <!-- Nav -->
  445.                         <nav id="nav">
  446.                             <ul>
  447.                                 <li class="current"><a href="http://xvtt.site88.net/homepage.html">Home</a></li>
  448.                                 <li><a href="http://xvtt.site88.net/application.php">Application Center</a></li>
  449.                                 <li><a href="http://xvtt.site88.net/index.php?action=forum">Forum</a></li>
  450.                                 <li><a href="http://cit2.net/index.php?board=448.0">Board</a></li>
  451.                                 <li><a href="http://cit2.net/index.php?topic=115441.0">Chit Chat</a></li>
  452.                             </ul>
  453.                         </nav>
  454.  
  455.                 </div>
  456.             </div>
  457.             <!-- Intro -->
  458.             <div id="intro-wrapper" class="wrapper style1">
  459.                 <div class="title">Application</div>
  460.                 <section id="intro" class="container">
  461.                     <p class="style1">xvtt Application - Code Generated</p>
  462.                     <p class="style2">
  463.                         Here is your Generated Code!
  464.                         Use the "Select Text" button to select the text and paste it <u><a href="http://cit2.net/index.php?topic=103147.0">here</a></u> in a new reply.
  465.                     </p>
  466. <center><div class="form"><form name="selectall"><textarea rows="41" cols="100" name="messageBody" readonly warp="off">[center][img width=800 height=65]http://i.imgur.com/AeUKIRf.png[/img][/center]
  467. [center][img width=412 height=152]http://imageshack.com/a/img855/9909/a7qu.png[/img][/center]
  468. [hr]
  469. [img width=200 height=45]http://i.imgur.com/LmrbiAe.png[/img]
  470.  
  471. [b][color=teal]1.1[/color] Your Account Name:[/b] <?php echo $_SESSION['igaccname'];?>
  472. [b][color=teal]1.2[/color] Your In-Game Name:[/b] <?php echo $_SESSION['igname'];?>
  473. [b][color=teal]1.3[/color] Your Nationality:[/b] <?php echo $_SESSION['nation'];?>
  474. [b][color=teal]1.4[/color] Your Age:[/b] <?php echo $_SESSION['age'];?>
  475. [b][color=teal]1.5[/color] Your English Skills [/b](?/10): <?php echo $_SESSION['engskills'];?> /10
  476. [b][color=teal]1.6[/color] Your Timezone [/b](GMT): <?php echo $_SESSION['time'];?>
  477. [b][color=teal]1.7[/color] Your Gender:[/b] <?php echo $_SESSION['gender'];?>
  478.  
  479. [img width=200 height=45]http://i.imgur.com/8pCuJBA.png[/img]
  480.  
  481. [b][color=teal]2.1[/color] Tell us something about your CIT Life[/b] [i](Atleast 50 Words)[/i]: <?php echo $_POST["citlife"];?>
  482. [b][color=teal]2.2[/color] Tell us something about yourself[/b] [i](Atleast 50 words)[/i]: <?php echo $_POST["yourself"];?>
  483. [b][color=teal]2.3[/color] Tell us why we should accept you into xvtt:[/b] <?php echo $_POST["whyxvtt"];?>
  484. [b][color=teal]2.4[/color] Your strengths:[/b] <?php echo $_POST["strengths"];?>
  485. [b][color=teal]2.5[/color] Your weakness:[/b] <?php echo $_POST["weakness"];?>
  486. [b][color=teal]2.6[/color] Previous gangs:[/b] <?php echo $_POST["prevgangs"];?>
  487. [b][color=teal]2.7[/color] Previous Business:[/b] <?php echo $_POST["prevbusiness"];?>
  488. [b][color=teal]2.8[/color] Reason for leaving your old Squad:[/b] <?php echo $_POST["oldsquad"];?>
  489.  
  490. [img width=350 height=50]http://i.imgur.com/puMFPyH.png[/img]
  491.  
  492. [b][color=teal]3.1[/color] Screenshot of your Stats:[/b] <?php echo $_POST["stats"];?>
  493. [b][color=teal]3.2[/color] Screenshot of your Punishlog:[/b] <?php echo $_POST["punish"];?>
  494. [b][color=teal]3.3[/color] Screenshot of your Criminal Level:[/b] <?php echo $_POST["crimlvl"];?>
  495.  
  496. [img width=350 height=50]http://i.imgur.com/1rV2kRe.png[/img]
  497.  
  498. [b][color=teal]4.1[/color] Once you are accepted you will obey CIT & xvtt rules (Y/N):[/b] <?php echo $_POST["xvttrules"];?>
  499. [b][color=teal]4.2[/color] I will flame to my xvtt members(Y/N):[/b] <?php echo $_POST["xvttm"];?>
  500. [b][color=teal]4.3[/color] You will obey senior ranks orders (Y/N):[/b] <?php echo $_POST["orders"];?>
  501. [b][color=teal]4.4[/color] You will respect all xvtt & CIT members (Y/N):[/b] <?php echo $_POST["respect"];?>
  502. [b][color=teal]4.5[/color] I will troll my xvtt members(Y/N):[/b] <?php echo $_POST["troll"];?>
  503. [b]<?php echo "Applied at Date " . date("Y/m/d");?>[/b] - This is according to EDT
  504. [b]<?php echo "Applied at Time " . date("h:i:sa");?>[/b] - This is according to EDT
  505. [hr]
  506. [b]For Moderators:[/b]
  507. [b][color=teal]5.1[/color][/b] If this applicant is [b][color=green]Accepted[/color][/b], use this format: [spoiler][code]Dear [color=deeppink][b]<?php echo $_POST["igname"];?> [/b][/color]
  508.  
  509. After reading your Application, xvtt staffs have decided to [color=green][b]Accept[/b][/color] you.
  510. [list]
  511. [li]Reason[/li]
  512. [li]We'll give you one chance[/li]
  513. [li]Contact any Void+ ingame to get an invite[/li]
  514. [/list][hr]
  515.  
  516. [center][img width=351 height=200]http://i.imgur.com/kGGoJqu.png[/img][/center][/code][/spoiler]
  517.  
  518. [b][color=teal]5.2[/color][/b] If this applicant is [b][color=red]Denied[/color][/b], use this format: [spoiler][code]Dear [color=deeppink][b]<?php echo $_POST["igname"];?> [/b][/color]
  519.  
  520. After reading your Application, xvtt staffs have decided to [color=red][b]Deny[/b][/color] you.
  521. [list]
  522. [li]Reason.[/li]
  523. [li]Reason (Optional)[/li]
  524.  [/list][hr]
  525.  
  526. [center][img width=351 height=200]http://i.imgur.com/GFcNKo1.png[/img][/center][/code][/spoiler]
  527.  
  528. [b][color=teal]5.3[/color][/b] If this applicant is on [b][color=orange]Pending[/color][/b], use this format: [spoiler][code]Dear [color=deeppink][b]<?php echo $_POST["igname"];?> [/b][/color]
  529.  
  530. After reading your Application, xvtt staffs have decided to put you on [color=orange][b]Pending[/b][/color]
  531. [list]
  532. [li]Reason.[/li]
  533. [li]Reason (Optional)[/li]
  534. [/list][hr]
  535.  
  536. [center][img width=351 height=200]http://i.imgur.com/D1ZKoGu.png[/img][/center][/code][/spoiler]
  537. </textarea><br><br>
  538. <input type="button" class="button style3 big" value="Select Text" onClick="javascript:this.form.messageBody.focus();this.form.messageBody.select();">
  539. <form></div></center>
  540. </div>
  541. </body>
  542. </html>
  543. _______________________________________________________________________________________________________________________________________
  544. style.css
  545. _______________________________________________________________________________________________________________________________________
  546.  
  547. @charset 'UTF-8';
  548. @import url('http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,700,900');
  549. @import url('font-awesome.min.css');
  550.  
  551. /*
  552.     Escape Velocity by HTML5 UP
  553.     html5up.net | @n33co
  554.     Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
  555. */
  556.  
  557. /*********************************************************************************/
  558. /* Basic                                                                         */
  559. /*********************************************************************************/
  560.  
  561.     body, input, textarea, select
  562.     {
  563.         font-family: 'Source Sans Pro', sans-serif;
  564.         font-weight: 400;
  565.         color: #919499;
  566.     }
  567.  
  568.         body.is-loading *
  569.         {
  570.             -moz-transition: none !important;
  571.             -webkit-transition: none !important;
  572.             -o-transition: none !important;
  573.             -ms-transition: none !important;
  574.             transition: none !important;
  575.             -moz-animation: none !important;
  576.             -webkit-animation: none !important;
  577.             -o-animation: none !important;
  578.             -ms-animation: none !important;
  579.             animation: none !important;
  580.         }
  581.  
  582.     h1,h2,h3,h4,h5,h6
  583.     {
  584.         font-weight: 700;
  585.         color: #484d55;
  586.     }
  587.    
  588.     h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
  589.     {
  590.         color: inherit;
  591.         text-decoration: none;
  592.     }
  593.  
  594.     a
  595.     {
  596.         text-decoration: underline;
  597.         color: #717479;
  598.         -moz-transition: color .25s ease-in-out;
  599.         -webkit-transition: color .25s ease-in-out;
  600.         -o-transition: color .25s ease-in-out;
  601.         -ms-transition: color .25s ease-in-out;
  602.         transition: color .25s ease-in-out;
  603.     }
  604.    
  605.         a:hover
  606.         {
  607.             text-decoration: none;
  608.         }
  609.  
  610.     strong, b
  611.     {
  612.         font-weight: 700;
  613.         color: #484d55;
  614.     }
  615.    
  616.     blockquote
  617.     {
  618.         border-left: solid 0.5em #ddd;
  619.         padding: 1em 0 1em 2em;
  620.         font-style: italic;
  621.     }
  622.    
  623.     em, i
  624.     {
  625.         font-style: italic;
  626.     }
  627.    
  628.     hr
  629.     {
  630.         border: 0;
  631.         border-top: solid 1px #ddd;
  632.     }
  633.    
  634.     sub
  635.     {
  636.         position: relative;
  637.         top: 0.5em;
  638.         font-size: 0.8em;
  639.     }
  640.    
  641.     sup
  642.     {
  643.         position: relative;
  644.         top: -0.5em;
  645.         font-size: 0.8em;
  646.     }
  647.    
  648.     .nobr
  649.     {
  650.         white-space: nowrap;
  651.     }
  652.  
  653.     br.clear
  654.     {
  655.         clear: both;
  656.     }
  657.    
  658.     p, ul, ol, dl, table, blockquote, form
  659.     {
  660.         margin-bottom: 2em;
  661.     }
  662.    
  663.     /* Table */
  664.  
  665.         table
  666.         {
  667.             width: 100%;
  668.         }
  669.        
  670.             table.default
  671.             {
  672.                 width: 100%;
  673.             }
  674.            
  675.                 table.default tbody tr:nth-child(2n+2)
  676.                 {
  677.                     background: #f4f4f4;
  678.                 }
  679.                
  680.                 table.default td
  681.                 {
  682.                     padding: 0.5em 1em 0.5em 1em;
  683.                 }
  684.                
  685.                 table.default th
  686.                 {
  687.                     text-align: left;
  688.                     font-weight: 400;
  689.                     padding: 0.5em 1em 0.5em 1em;
  690.                 }
  691.            
  692.                 table.default thead
  693.                 {
  694.                     background: #484d55;
  695.                     color: #fff;
  696.                 }
  697.                
  698.                 table.default tfoot
  699.                 {
  700.                     background: #eee;
  701.                 }
  702.                
  703.                 table.default tbody
  704.                 {
  705.                 }
  706.  
  707.     /* Form */
  708.  
  709.         form
  710.         {
  711.         }
  712.        
  713.             form label
  714.             {
  715.                 display: block;
  716.                 font-weight: 700;
  717.                 color: #484d55;
  718.             }
  719.        
  720.             form input[type="text"],
  721.             form input[type="email"],
  722.             form input[type="password"],
  723.             form select,
  724.             form textarea
  725.             {
  726.                 -webkit-appearance: none;
  727.                 display: block;
  728.                 border: 0;
  729.                 background: #eee;
  730.                 box-shadow: inset 0px 0px 1px 0px #a0a1a7;
  731.                 border-radius: 0.35em;
  732.                 width: 100%;
  733.                 padding: 0.75em 1em 0.75em 1em;
  734.                 -moz-transition: all .25s ease-in-out;
  735.                 -webkit-transition: all .25s ease-in-out;
  736.                 -o-transition: all .25s ease-in-out;
  737.                 -ms-transition: all .25s ease-in-out;
  738.                 transition: all .25s ease-in-out;
  739.             }
  740.  
  741.             form input[type="text"],
  742.             form input[type="email"],
  743.             form input[type="password"],
  744.             form select
  745.             {
  746.                 line-height: 1em;
  747.             }
  748.            
  749.             form textarea
  750.             {
  751.                 min-height: 10em;
  752.             }
  753.  
  754.                 form input[type="text"]:focus,
  755.                 form input[type="email"]:focus,
  756.                 form input[type="password"]:focus,
  757.                 form select:focus,
  758.                 form textarea:focus
  759.                 {
  760.                     background: #f8f8f8;
  761.                 }
  762.                
  763.                 form .formerize-placeholder
  764.                 {
  765.                     color: #555 !important;
  766.                     font-style: italic;
  767.                 }
  768.  
  769.                 form ::-webkit-input-placeholder
  770.                 {
  771.                     color: #555 !important;
  772.                     font-style: italic;
  773.                     line-height: 1.35em;
  774.                 }
  775.  
  776.                 form :-moz-placeholder
  777.                 {
  778.                     color: #555 !important;
  779.                     font-style: italic;
  780.                 }
  781.  
  782.                 form ::-moz-placeholder
  783.                 {
  784.                     color: #555 !important;
  785.                     font-style: italic;
  786.                 }
  787.  
  788.                 form :-ms-input-placeholder
  789.                 {
  790.                     color: #555 !important;
  791.                     font-style: italic;
  792.                 }
  793.  
  794.                 form ::-moz-focus-inner
  795.                 {
  796.                     border: 0;
  797.                 }
  798.  
  799.     /* Section/Article */
  800.  
  801.         section,
  802.         article
  803.         {
  804.             margin-bottom: 3em;
  805.         }
  806.        
  807.             section > :last-child,
  808.             article > :last-child
  809.             {
  810.                 margin-bottom: 0;
  811.             }
  812.  
  813.             section:last-child,
  814.             article:last-child
  815.             {
  816.                 margin-bottom: 0;
  817.             }
  818.        
  819.         header.style1
  820.         {
  821.             text-align: center;
  822.         }
  823.  
  824.             header.style1 h2
  825.             {
  826.                 font-weight: 700;
  827.             }
  828.            
  829.             header.style1 p
  830.             {
  831.                 color: #b1b4b9;
  832.             }
  833.  
  834.     /* Image */
  835.  
  836.         .image
  837.         {
  838.             display: inline-block;
  839.         }
  840.        
  841.             .image img
  842.             {
  843.                 display: block;
  844.                 width: 100%;
  845.             }
  846.  
  847.             .image.fit
  848.             {
  849.                 display: block;
  850.                 width: 100%;
  851.             }
  852.  
  853.             .image.left
  854.             {
  855.                 float: left;
  856.                 margin: 0 2em 2em 0;
  857.             }
  858.            
  859.             .image.centered
  860.             {
  861.                 display: block;
  862.                 margin: 0 0 2em 0;
  863.             }
  864.  
  865.                 .image.centered img
  866.                 {
  867.                     margin: 0 auto;
  868.                     width: auto;
  869.                 }
  870.                
  871.             .image.featured
  872.             {
  873.                 display: block;
  874.                 width: 100%;
  875.                 margin: 0 0 2em 0;
  876.             }
  877.  
  878.     /* Button */
  879.    
  880.         input[type="button"],
  881.         input[type="submit"],
  882.         input[type="reset"],
  883.         .button
  884.         {
  885.             display: inline-block;
  886.             background: #444;
  887.             text-align: center;
  888.             text-transform: uppercase;
  889.             font-weight: 700;
  890.             letter-spacing: 0.25em;
  891.             text-decoration: none;
  892.             border-radius: 0.35em;
  893.             border: 0;
  894.             outline: 0;
  895.             cursor: pointer;
  896.             -moz-transition: all .25s ease-in-out;
  897.             -webkit-transition: all .25s ease-in-out;
  898.             -o-transition: all .25s ease-in-out;
  899.             -ms-transition: all .25s ease-in-out;
  900.             transition: all .25s ease-in-out;
  901.         }
  902.  
  903.             input[type="button"].style1,
  904.             input[type="submit"].style1,
  905.             input[type="reset"].style1,
  906.             .button.style1
  907.             {
  908.                 background: #e97770 url('images/overlay.png');
  909.                 color: #fff;
  910.             }
  911.  
  912.                 input[type="button"].style1:hover,
  913.                 input[type="submit"].style1:hover,
  914.                 input[type="reset"].style1:hover,
  915.                 .button.style1:hover
  916.                 {
  917.                     background-color: #f98780;
  918.                 }
  919.                
  920.                 input[type="button"].style1:active,
  921.                 input[type="submit"].style1:active,
  922.                 input[type="reset"].style1:active,
  923.                 .button.style1:active
  924.                 {
  925.                     background-color: #d96760;
  926.                 }
  927.  
  928.             input[type="button"].style2,
  929.             input[type="submit"].style2,
  930.             input[type="reset"].style2,
  931.             .button.style2
  932.             {
  933.                 background: none;
  934.                 color: #606167;
  935.                 box-shadow: inset 0px 0px 2px 0px #a0a1a7;
  936.             }
  937.            
  938.                 input[type="button"].style2:hover,
  939.                 input[type="submit"].style2:hover,
  940.                 input[type="reset"].style2:hover,
  941.                 .button.style2:hover
  942.                 {
  943.                     box-shadow: inset 0px 0px 2px 0px #606167;
  944.                 }
  945.            
  946.                 input[type="button"].style2:active,
  947.                 input[type="submit"].style2:active,
  948.                 input[type="reset"].style2:active,
  949.                 .button.style2:active
  950.                 {
  951.                     box-shadow: inset 0px 0px 2px 0px #202127;
  952.                 }
  953.  
  954.             input[type="button"].style3,
  955.             input[type="submit"].style3,
  956.             input[type="reset"].style3,
  957.             .button.style3
  958.             {
  959.                 background: #2f333b url('images/overlay.png');
  960.                 color: #fff;
  961.             }
  962.  
  963.                 input[type="button"].style3:hover,
  964.                 input[type="submit"].style3:hover,
  965.                 input[type="reset"].style3:hover,
  966.                 .button.style3:hover
  967.                 {
  968.                     background-color: #3f434b;
  969.                 }
  970.                
  971.                 input[type="button"].style3:active,
  972.                 input[type="submit"].style3:active,
  973.                 input[type="reset"].style3:active,
  974.                 .button.style3:active
  975.                 {
  976.                     background-color: #1f232b;
  977.                 }
  978.  
  979.     /* List */
  980.  
  981.         ul.default
  982.         {
  983.             list-style: disc;
  984.             padding-left: 1em;
  985.         }
  986.        
  987.             ul.default li
  988.             {
  989.                 padding-left: 0.5em;
  990.             }
  991.            
  992.         ul.style2
  993.         {
  994.         }
  995.        
  996.             ul.style2 li
  997.             {
  998.                 border-top: solid 1px #eee;
  999.                 padding: 1.5em 0 0 0;
  1000.                 margin: 1.5em 0 0 0;
  1001.             }
  1002.            
  1003.             ul.style2 li:first-child
  1004.             {
  1005.                 border-top: 0;
  1006.                 padding-top: 0;
  1007.                 margin-top: 0;
  1008.             }
  1009.        
  1010.         ul.style3
  1011.         {
  1012.         }
  1013.        
  1014.             ul.style3 li
  1015.             {
  1016.                 border-top: solid 1px #eee;
  1017.                 padding: 0.5em 0 0 0;
  1018.                 margin: 0.5em 0 0 0;
  1019.             }
  1020.            
  1021.             ul.style3 li:first-child
  1022.             {
  1023.                 border-top: 0;
  1024.                 padding-top: 0;
  1025.                 margin-top: 0;
  1026.             }
  1027.  
  1028.         ol
  1029.         {
  1030.         }  
  1031.  
  1032.             ol.default
  1033.             {
  1034.                 list-style: decimal;
  1035.                 padding-left: 1.25em;
  1036.             }
  1037.  
  1038.                 ol.default li
  1039.                 {
  1040.                     padding-left: 0.25em;
  1041.                 }
  1042.                
  1043.     /* Feature List */
  1044.  
  1045.         .feature-list
  1046.         {
  1047.         }
  1048.  
  1049.             .feature-list h3
  1050.             {
  1051.                 color: #e97770 !important;
  1052.             }
  1053.            
  1054.                 .feature-list h3:before
  1055.                 {
  1056.                     position: relative;
  1057.                     display: inline-block;
  1058.                     color: #fff;
  1059.                     background: #2f333b url('images/overlay.png');
  1060.                     border-radius: 1em;
  1061.                     text-align: center;
  1062.                 }
  1063.  
  1064. /*********************************************************************************/
  1065. /* Icons                                                                         */
  1066. /*********************************************************************************/
  1067.  
  1068.     .icon {
  1069.         text-decoration: none;
  1070.     }
  1071.  
  1072.         .icon:before {
  1073.             display: inline-block;
  1074.             font-family: FontAwesome;
  1075.             font-size: 1.25em;
  1076.             text-decoration: none;
  1077.             font-style: normal;
  1078.             font-weight: normal;
  1079.             line-height: 1;
  1080.             -webkit-font-smoothing:antialiased;
  1081.             -moz-osx-font-smoothing:grayscale;
  1082.         }
  1083.        
  1084.         .icon > .label {
  1085.             display: none;
  1086.         }
  1087.  
  1088. /*********************************************************************************/
  1089. /* Wrappers                                                                      */
  1090. /*********************************************************************************/
  1091.  
  1092.     .wrapper
  1093.     {
  1094.         position: relative;
  1095.     }
  1096.  
  1097.         .wrapper .title
  1098.         {
  1099.             position: absolute;
  1100.             top: 0;
  1101.             left: 50%;
  1102.             text-align: center;
  1103.             text-transform: uppercase;
  1104.             display: block;
  1105.             font-weight: 700;
  1106.             letter-spacing: 0.25em;
  1107.         }
  1108.        
  1109.         .wrapper .title:before
  1110.         {
  1111.             content: '';
  1112.             position: absolute;
  1113.             bottom: -38px;
  1114.             left: -35px;
  1115.             width: 35px;
  1116.             height: 38px;
  1117.             background: url('images/shadow.png');
  1118.         }
  1119.        
  1120.         .wrapper .title:after
  1121.         {
  1122.             content: '';
  1123.             position: absolute;
  1124.             bottom: -38px;
  1125.             right: -35px;
  1126.             width: 35px;
  1127.             height: 38px;
  1128.             background: url('images/shadow.png');
  1129.             -moz-transform: scaleX(-1);
  1130.             -webkit-transform: scaleX(-1);
  1131.             -o-transform: scaleX(-1);
  1132.             -ms-transform: scaleX(-1);
  1133.             transform: scaleX(-1);
  1134.         }
  1135.  
  1136.         .wrapper.style1
  1137.         {
  1138.             background: #e97770 url('images/overlay.png');
  1139.             color: #eee;
  1140.             color: rgba(255,255,255,0.75);
  1141.         }
  1142.        
  1143.             .wrapper.style1 .title
  1144.             {
  1145.                 background: #e97770 url('images/overlay.png');
  1146.                 color: #fff;
  1147.             }
  1148.        
  1149.             .wrapper.style1 h1,
  1150.             .wrapper.style1 h2,
  1151.             .wrapper.style1 h3,
  1152.             .wrapper.style1 h4,
  1153.             .wrapper.style1 h5,
  1154.             .wrapper.style1 h6,
  1155.             .wrapper.style1 strong,
  1156.             .wrapper.style1 b,
  1157.             .wrapper.style1 a
  1158.             {
  1159.                 color: #fff;
  1160.             }
  1161.        
  1162.         .wrapper.style2
  1163.         {
  1164.             background: #fff;
  1165.         }
  1166.        
  1167.             .wrapper.style2 .title
  1168.             {
  1169.                 background: #fff;
  1170.                 color: #484d55;
  1171.             }
  1172.        
  1173.         .wrapper.style3
  1174.         {
  1175.             background: #f3f3f3 url('images/overlay.png');
  1176.         }
  1177.        
  1178.             .wrapper.style3 .title
  1179.             {
  1180.                 background: #f3f3f3 url('images/overlay.png');
  1181.                 color: #484d55;
  1182.             }
  1183.            
  1184.             .wrapper.style3 .image
  1185.             {
  1186.                 border: solid 10px #fff;
  1187.             }
  1188.  
  1189.     #header-wrapper
  1190.     {
  1191.         background: url('../images/banner.jpg') center center;
  1192.         background-size: cover;
  1193.     }
  1194.    
  1195.         #header-wrapper:before
  1196.         {
  1197.             content: '';
  1198.             position: absolute;
  1199.             top: 0;
  1200.             left: 0;
  1201.             width: 100%;
  1202.             height: 100%;
  1203.             background: url('images/overlay.png');
  1204.         }
  1205.    
  1206.     #footer-wrapper
  1207.     {
  1208.         background: #282b34 url('images/overlay.png');
  1209.         color: #eee;
  1210.         color: rgba(255,255,255,0.5);
  1211.     }
  1212.  
  1213.         #footer-wrapper h1,
  1214.         #footer-wrapper h2,
  1215.         #footer-wrapper h3,
  1216.         #footer-wrapper h4,
  1217.         #footer-wrapper h5,
  1218.         #footer-wrapper h6,
  1219.         #footer-wrapper strong,
  1220.         #footer-wrapper b,
  1221.         #footer-wrapper a
  1222.         {
  1223.             color: #fff;
  1224.         }
  1225.  
  1226.         #footer-wrapper hr
  1227.         {
  1228.             border-top-color: #333;
  1229.             border-top-color: rgba(255,255,255,0.05);
  1230.         }
  1231.  
  1232.         #footer-wrapper form
  1233.         {
  1234.         }
  1235.  
  1236.             #footer-wrapper form input[type="text"],
  1237.             #footer-wrapper form input[type="email"],
  1238.             #footer-wrapper form input[type="password"],
  1239.             #footer-wrapper form select,
  1240.             #footer-wrapper form textarea
  1241.             {
  1242.                 background: #ccc;
  1243.                 box-shadow: none;
  1244.             }
  1245.  
  1246.             #footer-wrapper form input[type="text"]:focus,
  1247.             #footer-wrapper form input[type="email"]:focus,
  1248.             #footer-wrapper form input[type="password"]:focus,
  1249.             #footer-wrapper form select:focus,
  1250.             #footer-wrapper form textarea:focus
  1251.             {
  1252.                 background: #fff;
  1253.             }
  1254.  
  1255.         #footer-wrapper input[type="button"].style2,
  1256.         #footer-wrapper input[type="submit"].style2,
  1257.         #footer-wrapper input[type="reset"].style2,
  1258.         #footer-wrapper .button.style2
  1259.         {
  1260.             color: #aaa;
  1261.             box-shadow: inset 0px 0px 2px 0px rgba(255,255,255,0.5);
  1262.         }
  1263.  
  1264.             #footer-wrapper input[type="button"].style2:hover,
  1265.             #footer-wrapper input[type="submit"].style2:hover,
  1266.             #footer-wrapper input[type="reset"].style2:hover,
  1267.             #footer-wrapper .button.style2:hover
  1268.             {
  1269.                 color: #ccc;
  1270.                 box-shadow: inset 0px 0px 2px 0px rgba(255,255,255,0.65);
  1271.             }
  1272.  
  1273.             #footer-wrapper input[type="button"].style2:active,
  1274.             #footer-wrapper input[type="submit"].style2:active,
  1275.             #footer-wrapper input[type="reset"].style2:active,
  1276.             #footer-wrapper .button.style2:active
  1277.             {
  1278.                 box-shadow: inset 0px 0px 2px 0px rgba(255,255,255,0.75);
  1279.             }
  1280.  
  1281.         #footer-wrapper .title
  1282.         {
  1283.             background: #282b34 url('images/overlay.png');
  1284.             color: #eee;
  1285.         }
  1286.        
  1287.         #footer-wrapper header.style1
  1288.         {
  1289.         }
  1290.        
  1291.             #footer-wrapper header.style1 h2
  1292.             {
  1293.                 color: #fff;
  1294.             }
  1295.    
  1296.             #footer-wrapper header.style1 .p
  1297.             {
  1298.                 color: inherit;
  1299.             }
  1300.  
  1301.         #footer-wrapper .feature-list
  1302.         {
  1303.         }
  1304.        
  1305.             #footer-wrapper .feature-list section
  1306.             {
  1307.                 border-top-color: #333;
  1308.                 border-top-color: rgba(255,255,255,0.05);
  1309.             }
  1310.  
  1311.             #footer-wrapper .feature-list h3
  1312.             {
  1313.             }
  1314.            
  1315.                 #footer-wrapper .feature-list h3:before
  1316.                 {
  1317.                     background: #3d4249 url('images/overlay.png');
  1318.                 }
  1319.        
  1320. /*********************************************************************************/
  1321. /* Logo                                                                          */
  1322. /*********************************************************************************/
  1323.  
  1324.     #logo
  1325.     {
  1326.     }
  1327.    
  1328.         #logo h1
  1329.         {
  1330.             font-weight: 900;
  1331.             text-transform: uppercase;
  1332.             color: #fff;
  1333.         }
  1334.        
  1335.         #logo p
  1336.         {
  1337.             color: #eee;
  1338.             color: rgba(255,255,255,0.5);
  1339.             text-transform: uppercase;
  1340.         }
  1341.  
  1342. /*********************************************************************************/
  1343. /* Intro                                                                         */
  1344. /*********************************************************************************/
  1345.  
  1346.     #intro
  1347.     {
  1348.     }
  1349.    
  1350.         #intro > .style1
  1351.         {
  1352.         }  
  1353.        
  1354.         #intro > .style2
  1355.         {
  1356.             font-weight: 700;
  1357.             color: #fff;
  1358.             border-radius: 0.35em;
  1359.             box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.25);
  1360.         }
  1361.        
  1362.             #intro > .style2 a
  1363.             {
  1364.                 color: inherit;
  1365.                 text-decoration: none;
  1366.             }
  1367.        
  1368.         #intro > .style3
  1369.         {
  1370.         }
  1371.        
  1372. /*********************************************************************************/
  1373. /* Highlights                                                                    */
  1374. /*********************************************************************************/
  1375.  
  1376.     #highlights
  1377.     {
  1378.     }
  1379.  
  1380.         #highlights .highlight
  1381.         {
  1382.             text-align: center;
  1383.         }
  1384.        
  1385.             #highlights .highlight h3
  1386.             {
  1387.                 color: #e97770;
  1388.             }
  1389.  
  1390. /*********************************************************************************/
  1391. /* Copyright                                                                     */
  1392. /*********************************************************************************/
  1393.            
  1394.     #copyright
  1395.     {
  1396.         text-align: center;
  1397.     }
  1398.    
  1399.         #copyright ul
  1400.         {
  1401.             display: inline-block;
  1402.             border-radius: 0.35em;
  1403.             box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.05);
  1404.             color: #aaa;
  1405.             color: rgba(255,255,255,0.25);
  1406.         }
  1407.        
  1408.         #copyright a
  1409.         {
  1410.             color: inherit;
  1411.         }
  1412.        
  1413.             #copyright a:hover
  1414.             {
  1415.                 color: #fff;
  1416.             }
  1417.     #mib
  1418.     {
  1419.         text-align: right;
  1420.         background-color: #C8C8C8;
  1421.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement