Advertisement
guusv

auth.gsp view source

Oct 11th, 2014
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.16 KB | None | 0 0
  1. <!DOCTYPE html>
  2.     <head>
  3.         <meta charset="utf-8">
  4.         <meta name="viewport" content="width=device-width, initial-scale=1">
  5.         <link rel="stylesheet" href="/themes/aw.min.css" />
  6.         <link rel="stylesheet" href="/themes/jquery.mobile.icons.min.css" />       
  7.         <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.4/jquery.mobile.structure-1.4.4.min.css" />
  8.         <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
  9.         <script src="http://code.jquery.com/mobile/1.4.4/jquery.mobile-1.4.4.min.js"></script>
  10.  
  11.         <r:layoutResources/>
  12.        
  13.     <meta name="layout" content="main"/>
  14.  
  15.  
  16.     </head>
  17.     <body>
  18.        
  19.         <div data-role="page" id="pageone"  data-quicklinks="true" data-theme="a">
  20.             <div data-role="panel" data-position-fixed="true" data-theme="a" id="myPanel">
  21.             </div><!-- /panel -->
  22.  
  23.               <div data-role="header"  data-position="fixed" >
  24.                 <a href="#myPanel" data-icon="bars" data-iconpos="notext">Menu</a>
  25.                 <h1>Radio</h1>
  26.               </div>
  27.  
  28.  
  29.           <div data-role="main" class="ui-content" id="center">
  30.                 <div data-role="content">
  31.                     <div class="ui-body ui-body-a ui-corner-all">
  32.                         <h3>login</h3>
  33.        
  34.  
  35.                             <form action='/j_spring_security_check' method='GET' id='loginForm'  autocomplete='off'>
  36.                                 <p>
  37.                                     <input type='text' class='text_' name='j_username' id='username' placeholder="email_address"/>
  38.                                 </p>
  39.  
  40.                                 <p>
  41.                                     <input type='password' class='text_' name='j_password' id='password' placeholder="password"/>
  42.                                 </p>
  43.  
  44.                                 <p>
  45.                                     <input type='submit' id="submit" value='login'/>
  46.                                 </p>
  47.                             </form>                    
  48.                     </div>
  49.  
  50.  
  51.  
  52.                 </div>
  53.           </div>
  54.  
  55.           <div data-role="footer"  data-position="fixed"   data-theme="a">
  56.             <div align="center">
  57.                 <div id="custom-border-radius">
  58.                     <a href="#" class="ui-btn ui-icon-user ui-btn-icon-notext ui-corner-all">No text</a>&nbsp;&nbsp;&nbsp;&nbsp;
  59.                     <a href="#" class="ui-btn ui-icon-info ui-btn-icon-notext ui-corner-all">No text</a>
  60.                 </div>
  61.             </div>
  62.           </div>
  63.         </div>
  64.  
  65.  
  66.  
  67. <script type='text/javascript'>
  68.     (function() {
  69.         document.forms['loginForm'].elements['j_username'].focus();
  70.     })();
  71. </script>
  72.  
  73.     </body>
  74. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement