Add password login option for some users, and further refinements to artwork management system

This commit is contained in:
Alex Cabal 2024-01-06 19:10:52 -06:00
parent 8a1b11b815
commit 5a1c05d8c5
22 changed files with 234 additions and 150 deletions

View file

@ -2,5 +2,5 @@
namespace Exceptions;
class InvalidUserException extends AppException{
protected $message = 'We couldnt locate you in our system.';
protected $message = 'We couldnt validate your login information.';
}

View file

@ -0,0 +1,5 @@
<?
namespace Exceptions;
class PasswordRequiredException extends AppException{
}