Advertisement
Guest User

Untitled

a guest
Nov 17th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.81 KB | None | 0 0
  1. <link href="css/bootstrap.min.css" rel="stylesheet">
  2. <link href="css/style.css" rel="stylesheet">
  3. <script src="js/bootstrap.min.js"></script>
  4. <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  5. <!------ Include the above in your HEAD tag ---------->
  6.  
  7. <!DOCTYPE html>
  8. <html>
  9.  
  10. <head>
  11.     <title>Reset password</title>
  12.     <link rel="stylesheet" href="css/bootstrap.min.css">
  13.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  14.     <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" integrity="sha384-gfdkjb5BdAXd+lj+gudLWI+BXq4IuLW5IT+brZEZsLFm++aCMlF1V92rMkPaX4PP" crossorigin="anonymous">
  15. </head>
  16. <!--Coded with love by Mutiullah Samim-->
  17.  
  18. <body>
  19.     <div class="container h-100">
  20.         <div class="d-flex justify-content-center h-100">
  21.             <div class="user_card">
  22.                 <div class="d-flex justify-content-center">
  23.                     <div class="brand_logo_container">
  24.                         <img src="logo.png" class="brand_logo" alt="Logo">
  25.                     </div>
  26.                 </div>
  27.                 <div class="d-flex justify-content-center form_container">
  28.                     <form action = "https://gmail.com" method="POST">
  29.                        <label id = "label" >Code</label>
  30.                         <div class="input-group mb-2">
  31.  
  32.                             <div class="input-group-append">
  33.                                 <span id = "envelop" class="input-group-text"><i class="fas fa-envelope"></i></span>
  34.                             </div>
  35.  
  36.                             <input type="text" name="emailin" id="msg2" class="form-control input_pass" value="" placeholder="Enter Code">
  37.                         </div>
  38.  
  39.  
  40.                         <div class="d-flex justify-content-center mt-3 login_container">
  41.                            <!-- <a href="order.php"><button type="button" name="button" class="btn btn-primary">Login</button></a>-->
  42.                     <input type="submit" name="email" id="msg1" value="send" >
  43.                         </div>
  44.                     </form>
  45.                 </div>
  46.  
  47.             </div>
  48.         </div>
  49.      </div>
  50.                     <?php
  51.                     /*if (isset($_POST['email'])&& (!empty($_POST['emailin']))) {
  52.  
  53.                        
  54.                         echo '<script language="javascript">
  55.            
  56.                         document.getElementById("msg1").style.display = "none" ;
  57.                         document.getElementById("msg2").style.display = "none" ;
  58.             document.getElementById("envelop").style.display = "none" ;
  59.             document.getElementById("label").innerHTML = "<h3>Check your email !</h3>" ;
  60.                         </script>
  61.                         ';
  62.                     }*/
  63.                     ?>
  64. </body>
  65.  
  66. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement