Advertisement
Guest User

zk

a guest
Apr 20th, 2013
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.47 KB | None | 0 0
  1. <?page title="Login"?>
  2. <window id="win" title="Login" border="normal" width="200px"
  3.     apply="login.Login">
  4.    
  5.     <grid>
  6.         <rows>
  7.             <row>
  8.                 <label value="Username" />
  9.                 <textbox id="user" width="150px" tabindex="1" />
  10.             </row>
  11.             <row>
  12.                 <label value="Password" />
  13.                 <textbox id="pass" type="password" width="150px"
  14.                     tabindex="2" />
  15.             </row>
  16.             <row>
  17.                 <button id="submit" label="ok" width="50px"></button>
  18.             </row>
  19.         </rows>
  20.     </grid>
  21.  
  22.  
  23.  
  24. </window>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement