This commit is contained in:
Joshua Ashton
2025-03-06 23:08:52 -07:00
parent 86d501c980
commit 551abb66b5
12 changed files with 514 additions and 20 deletions
+25
View File
@@ -0,0 +1,25 @@
<?php
$login_fields = [
'method' => 'post',
'action' => 'process.php?action=login',
'login_username' => [
'label' => 'username',
'type' => 'text',
'placeholder' => 'e.g., jsmith',
'validators' => [
'no_spaces',
// 'check_sql',
],
],
'login_password' => [
'label' => 'password',
'type' => 'password',
'placeholder' => '',
'validators' => [
'no_spaces',
// 'pw_strength',
// 'no_backslash',
// 'check_sql',
],
],
];