fix(csrf): URL-decode form tokens to handle browser encoding
Browsers URL-encode special characters like '=' as '%3D' when submitting
forms. CSRF tokens using Base64 end with '=' padding, causing token
mismatch. Added Uri.pct_decode to decode form field names and values.
Also includes:
- LAS CLI options (-p/--port, -d/--database, -v/--verbose)
- Verbose logging via Hcs.Log.stderr()
- Session secure:false for HTTP localhost
- Remove legacy middleware modules
- Add multipart form parsing module