Move libraries to autoload format

This commit is contained in:
Antonio de la Rosa 2025-11-26 00:02:19 +01:00
parent 7ac0f6c850
commit b4f758f0b5
8 changed files with 1009 additions and 23 deletions

View file

@ -1,8 +1,9 @@
<?=$this->layout('login_tpl', ['title' => $title])?>
<?=$this->start('content')?>
<form method="post" name="auth_submit" id="auth_submit">
<p style="padding: 0px 10px;">You have 5 minutes for put the code sended to your email.</p>
<p><label for="auth_code"></label><input type="text" name="auth_code" id="auth_code_form" placeholder="<?=_('Code')?>"/></p>
<p class="error" id="username_error"></p>
<p class="error" id="auth_code_error"></p>
<?=PhangoApp\PhaUtils\Utils::set_csrf_key($name_token='csrf_token', $length_token=80)?>
<p>
<input type="submit" id="button_submit" class="button" value="<?=_('Send auth code')?>" />
@ -42,7 +43,7 @@
$('#csrf_token').attr('value', data.csrf_token);
$('#username_error').html(data.error_form.username_error);
$('#auth_code_error').html(data.error_form.username_error);
}
},