Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="ru">
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <title>login_form</title>
  6.   </head>
  7.   <body>
  8.     <div class="container">
  9.         <header class="site-header">
  10.             <h1>test login</h1>  
  11.         </header>
  12.        
  13.         <section class="login-pass-form">
  14.             <p >Login:  <?php
  15.                 $str_login = htmlspecialchars($_POST['name']);
  16.                 echo $str_login;
  17.              ?>></p>
  18.             <p >Password: </p>
  19.         </section>
  20.     </div>
  21.   </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement