Ferreteria/v0.5/login: Difference between revisions
< Ferreteria | v0.5
Jump to navigation
Jump to search
No edit summary |
m (11 revisions imported: moving this project here) |
||
(8 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
==About== | ==About== | ||
The login feature consists of | The login feature handles user/session authentication. It consists of three main phases: | ||
* | * [[/submit]]: checking user's submitted credentials | ||
* | * [[/session]]: checking Session cookie | ||
* | * [[/logout]]: handling of user logout | ||
Code files/filesets involved include: | |||
* | * {{l/ferreteria/code|login}} - core data and storage I/O classes -- see {{l/sub|data}} | ||
** | * {{l/ferreteria/code|dropins/login}} - admin display I/O | ||
* {{l/ferreteria/code|login/status.php}} - login status class | |||
* form widgets: | |||
* | ** {{l/ferreteria/code|tree/page/LoginWidget.php}} | ||
*** {{l/ferreteria/code|tree/page/LoginWidget_block.php}} | |||
*** {{l/ferreteria/code|tree/page/LoginWidget_inline.php}} | |||
** {{l/ferreteria/code|tree/page/traits-login.php}} |
Latest revision as of 16:44, 22 May 2022
About
The login feature handles user/session authentication. It consists of three main phases:
- /submit: checking user's submitted credentials
- /session: checking Session cookie
- /logout: handling of user logout
Code files/filesets involved include:
- login - core data and storage I/O classes -- see data
- dropins/login - admin display I/O
- login/status.php - login status class
- form widgets: