Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.19 KB | None | 0 0
  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4.       xmlns:ui="http://java.sun.com/jsf/facelets">
  5.  
  6.         <ui:composition template="./szablon.xhtml">
  7.             <ui:define name="content">
  8.                 <h2>#{msg.tytul_log}</h2>
  9.                 <form action="j_security_check" method="post">
  10.                     <table class="form">
  11.                         <tr>
  12.                             <td>#{msg.login}:</td>
  13.                             <td><input type="text" name="j_username" /></td>
  14.                         </tr>
  15.                         <tr>
  16.                             <td>#{msg.haslo}:</td>
  17.                             <td><input type="password" name="j_password" /></td>
  18.                         </tr>
  19.                         <tr>
  20.                             <td colspan="2">
  21.                                 <input type="submit" value="#{msg.zaloguj}" />
  22.                             </td>
  23.                         </tr>
  24.                     </table>
  25.             </form>
  26.     </ui:define>
  27.         </ui:composition>
  28.  
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement