Advertisement
Equidea

home-guest.php

Nov 2nd, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.86 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Browsergame - Home</title>
  5. </head>
  6. <body>
  7.     <main class="container">
  8.         <?= (!empty($success)) ? '<p>'.$success.'</p>' : '' ?>
  9.         <?= (!empty($error)) ? '<p>'.$error.'</p>' : '' ?>
  10.         <h1>Login</h1>
  11.         <form action="/login.php" method="post">
  12.             <input type="text" name="username" placeholder="Username" />
  13.             <input type="password" name="password" placeholder="Password" />
  14.             <input type="submit" value="Login" />
  15.         </form>
  16.         <h1>Register</h1>
  17.         <form action="/register.php" method="post">
  18.             <input type="text" name="username" placeholder="Username" />
  19.             <input type="password" name="password" placeholder="Password" />
  20.             <input type="password" name="check" placeholder="Confirm" />
  21.             <input type="text" name="email" placeholder="Email" />
  22.             <input type="submit" value="Register" />
  23.         </form>
  24.     </main>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement