redirect to login dialog
[sgn.git] / mason / user / login.mas
blob0f962db26bb134772c37ed61c7fb03a672e1f126
2 <%args>
3    $goto_url
4 </%args>
6 <style>
7 .textlabel {
8   width: 200px;
9   white-space: nowrap;
10   max-width: 150px;
11   overflow: hidden;
12   text-overflow: ellipsis;
13   float:left;     
16 .input { 
17   width: 200px;
18   white-space:nowrap;
21 .form-control { 
22   width: 300px;
25 </style>
27 <& /page/page_title.mas, title=>"Login" &>
29 <div>
30 <center>
31 <a href="javascript:history.back();"><button class="btn btn-primary">Go back</button></a>
32 </center>
33 </div>
35 <script>
37   jQuery(document).ready( function() {  
38     
39     jQuery('#goto_url').val('<% $goto_url %>');
42     jQuery('#site_login_dialog').modal('show'); 
44   });
46 </script>