Guest User

Untitled

a guest
Jul 19th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <?php
  2.  
  3. class login {
  4.  
  5. function displayLogin(){
  6. echo "<form action='index.php' method='post'>";
  7. echo "<p><label>Username:</label><input type='text' name='username' /></p>";
  8. echo "<p><label>Password:</label><input type='password' name='password' /></p>";
  9. echo "<p><input type='submit' name='submit' value='Login' /></p>";
  10. echo "</form>";
  11. }
  12. }
  13.  
  14. $loginForm = new login();
  15.  
  16. ?>
Add Comment
Please, Sign In to add comment