- Added Predis library for Redis connection (no PHP extension required) - Server-side SMS code generation and storage in Redis - Rate limiting and brute-force protection - Integration with n8n webhook for SMS sending - Environment variables moved to .env file - Fixed policy verification endpoint - Added file-based fallback if Redis unavailable
12 lines
121 B
SCSS
12 lines
121 B
SCSS
//
|
|
// Visibility utilities
|
|
//
|
|
|
|
.visible {
|
|
@include invisible(visible);
|
|
}
|
|
|
|
.invisible {
|
|
@include invisible(hidden);
|
|
}
|