fix(auth): secure hydration and align password forms
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
// Global document layout. The framework renders this once around the selected
|
||||
// page layout and merges SEO metadata, styles, and scripts into <head>/<body>.
|
||||
// Request cookies, resolved theme, language, URL, and pathname are available
|
||||
// as SSR props, so document attributes do not need a client-side correction.
|
||||
// Resolved theme, language, URL, and pathname are available as safe SSR props.
|
||||
layout Document {
|
||||
runtime = "server"
|
||||
|
||||
props {
|
||||
cookies = {}
|
||||
theme = "light"
|
||||
language = "en"
|
||||
url = ""
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
// Generated by scripts/generate-showcase.mjs. Do not edit directly.
|
||||
layout Document {
|
||||
runtime = "server"
|
||||
|
||||
props {
|
||||
cookies = {}
|
||||
theme = "light"
|
||||
|
||||
@@ -1729,6 +1729,8 @@ layout Showcase {
|
||||
function documentLayout() {
|
||||
return `// Generated by scripts/generate-showcase.mjs. Do not edit directly.
|
||||
layout Document {
|
||||
runtime = "server"
|
||||
|
||||
props {
|
||||
cookies = {}
|
||||
theme = "light"
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
layout Document {
|
||||
runtime = "server"
|
||||
|
||||
props {
|
||||
language: string = "en"
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
// Global document layout. The framework renders this once around the selected
|
||||
// page layout and merges SEO metadata, styles, and scripts into <head>/<body>.
|
||||
// Request cookies, resolved theme, language, URL, and pathname are available
|
||||
// as SSR props, so document attributes do not need a client-side correction.
|
||||
// Resolved theme, language, URL, and pathname are available as safe SSR props.
|
||||
layout Document {
|
||||
runtime = "server"
|
||||
|
||||
props {
|
||||
cookies = {}
|
||||
theme = "light"
|
||||
language = "en"
|
||||
url = ""
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
// Global document layout. The framework renders this once around the selected
|
||||
// page layout and merges SEO metadata, styles, and scripts into <head>/<body>.
|
||||
// Request cookies, resolved theme, language, URL, and pathname are available
|
||||
// as SSR props, so document attributes do not need a client-side correction.
|
||||
// Resolved theme, language, URL, and pathname are available as safe SSR props.
|
||||
layout Document {
|
||||
runtime = "server"
|
||||
|
||||
props {
|
||||
cookies = {}
|
||||
theme = "light"
|
||||
language = "en"
|
||||
url = ""
|
||||
|
||||
Reference in New Issue
Block a user