Routing
app_login
Matched route
Route Parameters
| Name | Value |
|---|---|
| _locale | "en" |
Route Matching Logs
Path to match:
/login
| # | Route name | Path | Log |
|---|---|---|---|
| 1 | admin.en | /admin | Path does not match |
| 2 | admin.pl | /pl/admin | Path does not match |
| 3 | app_homepage.en | / | Path does not match |
| 4 | app_homepage.pl | /pl/ | Path does not match |
| 5 | app_forgot_password_request.en | /reset-password | Path does not match |
| 6 | app_forgot_password_request.pl | /pl/reset-password | Path does not match |
| 7 | app_check_email.en | /reset-password/check-email | Path does not match |
| 8 | app_check_email.pl | /pl/reset-password/check-email | Path does not match |
| 9 | app_reset_password.en | /reset-password/reset/{token} | Path does not match |
| 10 | app_reset_password.pl | /pl/reset-password/reset/{token} | Path does not match |
| 11 | app_login.en | /login | Route matches! |
Note: These matching logs are based on the current router configuration, which might differ from the configuration used when profiling this request.