28 lines
563 B
PHP
28 lines
563 B
PHP
<?php
|
|
$smarty->display('user_ajax_login_modal.html');
|
|
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
jQuery(function ($) {
|
|
$(document).ready(function() {
|
|
|
|
$( "#ajax-login-button" ).click(function() {
|
|
showAjaxLoginFormModal();
|
|
});
|
|
|
|
|
|
function showAjaxLoginFormModal()
|
|
{
|
|
$('#ajax-login-form-modal').modal('show');
|
|
|
|
$.get('<?php echo url_for('stUser/ajaxLoginForm') ?>', function(data) {
|
|
|
|
$('#ajax-login-form').html(data);
|
|
});
|
|
};
|
|
|
|
|
|
});
|
|
});
|
|
</script>
|