first commit

This commit is contained in:
2025-03-12 17:06:23 +01:00
commit 2241f7131f
13185 changed files with 1692479 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<?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>