Advertisement
alatoru

index.php

Mar 19th, 2023 (edited)
807
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.04 KB | None | 0 0
  1. <?php
  2. include './config/Config.php';
  3. ?>
  4.  
  5. <html lang="en">
  6. <head>
  7.     <title>
  8.         <?php
  9.             if ( isset($_GET['change']) ) echo 'Change Password'; else echo 'Allodsw War';
  10.         ?>
  11.     </title>
  12.     <meta charset="UTF-8">
  13.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  14.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  15.     <link rel="preconnect" href="https://fonts.googleapis.com">
  16.     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  17.     <link href="https://fonts.googleapis.com/css2?family=Tajawal&display=swap" rel="stylesheet">
  18.     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  19.     <script>
  20.     setTimeout(myFunction, 500);
  21.     function myFunction(){
  22.     var dsp1 = document.getElementById('loading');
  23.     dsp1.style.display='none';
  24.     var dsp = document.getElementById('dsply');
  25.     dsp.style.display='block';
  26.     }
  27.     </script>
  28.     <style>body {font-family: Arial, Helvetica, sans-serif;}
  29. * {box-sizing: border-box;}
  30.  
  31. .input-container {
  32.   display: -ms-flexbox; /* IE10 */
  33.   display: flex;
  34.   width: 100%;
  35.   margin-bottom: 15px;
  36. }
  37.  
  38. .icon {
  39.   padding: 10px;
  40.   margin-right:5px;
  41.   background: dodgerblue;
  42.   color: white;
  43.   min-width: 50px;
  44.   text-align: center;
  45. }
  46.  
  47. .input-field {
  48.   width: 100%;
  49.   padding: 10px;
  50.   outline: none;
  51. }
  52.  
  53. .input-field:focus {
  54.   border: 2px solid dodgerblue;
  55. }
  56.  
  57. /* Set a style for the submit button */
  58. .btn {
  59.   background-color: dodgerblue;
  60.   color: white;
  61.   padding: 15px 20px;
  62.   border: none;
  63.   cursor: pointer;
  64.   width: 100%;
  65.   opacity: 0.9;
  66. }
  67.  
  68. .btn:hover {
  69.   opacity: 1;
  70. }
  71.     </style>
  72. </head>
  73. <body>
  74. <div id="loading"><p>loading</p></div>
  75. <div id="dsply">
  76. <?php
  77.     if ( isset($_GET['change']) ) echo 'Change Password';
  78.     elseif ( isset($_GET['donate']) ) echo "Donate";
  79.     else echo 'Make new account!';
  80.  
  81.  
  82.  
  83.     if ( isset($_GET['change']) ) include './config/change.php';
  84.     elseif ( isset($_GET['donate']) ) include './config/donate.php';
  85.     else include './config/reg.php';
  86. ?>
  87. </div>
  88. </body>
  89. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement