tweak multiple trait models output check..
[sgn.git] / mason / site / toolbar / login.mas
blob2a6147fd559dab56af1fb77ba1c832a72f6fd18f
2 <span id="login_button_html_div" style="white-space:nowrap;width:200;float:right"><button class="btn btn-primary disabled" type="button" style="margin: 7px 7px 0px 0px">Login</button></span>
5 <script>
8   function update_login_button() { 
10     jQuery.ajax( { 
11       url: '/ajax/user/login_button_html',
12       error: function(r) { alert('An error occurred'); },
13       success: function(r) { 
14         if (r.error) { alert(r.error); }
15         else { 
16           jQuery('#login_button_html_div').html(r.html);  
17         }
18       }
19     });
20   }
21         
22   function logout() { 
23     var answer = confirm("Are you sure you want to log out?");
25     if (answer === true) { 
26       jQuery.ajax( { 
27         url: '/ajax/user/logout',
28         error: function(r) { alert('An error occurred'); },
29         success: function(r) { 
30           if (r.error) { alert(r.error); }
31           else { 
32             location.reload();
33           }
34         }
35       });
36     }
37   }
38   
39 jQuery(document).ready(function () {
41   update_login_button();
42    
43   jQuery(document).on('click', 'button[name="site_login_button"]', function(event) 
44   { 
45     jQuery('#site_login_dialog').modal("show");
46   });
47 });
48   
49 </script>