Advertisement
sergAccount

Untitled

Apr 11th, 2021
826
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.90 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!--
  3. To change this license header, choose License Headers in Project Properties.
  4. To change this template file, choose Tools | Templates
  5. and open the template in the editor.
  6. -->
  7. <html>
  8.     <head>
  9.         <title>TODO supply a title</title>
  10.         <meta charset="UTF-8">
  11.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  12.     </head>
  13.     <body>
  14.         <h2>LOGIN FORM:</h2>
  15.         <form method="post" action="/W1/ProcessFormServlet">
  16.             <div>
  17.                 <label for="uname"><b>Username</b></label>
  18.                 <input type="text" placeholder="Enter Username" name="uname" required>
  19.                 <label for="psw"><b>Password</b></label>
  20.                 <input type="password" placeholder="Enter Password" name="psw" required>
  21.                 <button type="submit">Login</button>
  22.             </div>
  23.         </form>
  24.     </body>
  25. </html>
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement