Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.00 KB | None | 0 0
  1. w8_view_startpage.php:
  2.  
  3. <div id='signin' class='modal-window'>
  4.         <h2 style='text-align:center'>Sign In</h2>
  5.         <br>
  6.         <form method='post' action='w4_controller.php'>
  7.             <input type='hidden' name='page' value='StartPage'></input>
  8.             <input type='hidden' name='command' value='SignIn'></input>
  9.             <label class='modal-label'>Username:</label>
  10.             <input type='text' name='username' placeholder='Enter username' required></input>
  11.             <br>
  12.             <label class='modal-label'>Password:</label>
  13.             <input type='password' name='password' placeholder='Enter password' required></input>
  14.             <br>
  15.             <br>
  16.             <button type='submit' value='Submit'>Submit</button>
  17.             <button type='reset' value='Reset'>Reset</button>
  18.             <button id='cancel-signin' type='cancel' value='Cancel'>Cancel</button>
  19.         </form>
  20.     </div>
  21.  
  22.     <div id='join' class='modal-window'>
  23.         <h2 style='text-align:center'>Join</h2>
  24.         <br>
  25.         <form method='post' action='w4_controller.php'>
  26.             <input type='hidden' name='page' value='StartPage'></input>
  27.             <input type='hidden' name='command' value='Join'></input>
  28.            
  29.             <label class='modal-label'>Username:</label>
  30.             <input type='text' name='username' placeholder='Enter username' required></input>
  31.             <br>
  32.             <label class='modal-label'>Password:</label>
  33.             <input type='password' name='password' placeholder='Enter password' required></input>
  34.             <br>
  35.             <label class='modal-label'>Email:</label>
  36.             <input type='text' name='email' placeholder='Enter email address' required></input>
  37.             <br>
  38.             <br>
  39.             <button type='submit' value='Submit'>Submit</button>
  40.             <button type='reset' value='Reset'>Reset</button>
  41.             <button id='cancel-join' type='cancel' value='Cancel'>Cancel</button>
  42.         </form>
  43.     </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement