diff options
author | Daniel Weipert <code@drogueronin.de> | 2022-01-05 17:05:10 +0100 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2022-01-10 11:29:13 +0100 |
commit | 43ec8517cbc42093ad1f17063495f79e6eddf1cf (patch) | |
tree | 63394e9d41c1f3a5b1dfd85c02a30bb2241f3844 /templates | |
parent | 47e6d88484eba2733551de9edde8c4ac58706e5e (diff) |
Build pages with file fields
Diffstat (limited to 'templates')
-rw-r--r-- | templates/form-paged/fields/_fields.toml | 13 | ||||
-rw-r--r-- | templates/form-paged/fields/email.toml | 7 | ||||
-rw-r--r-- | templates/form-paged/fields/name.toml | 6 | ||||
-rw-r--r-- | templates/form-paged/fields/second.toml | 3 |
4 files changed, 29 insertions, 0 deletions
diff --git a/templates/form-paged/fields/_fields.toml b/templates/form-paged/fields/_fields.toml new file mode 100644 index 0000000..c0bfc7f --- /dev/null +++ b/templates/form-paged/fields/_fields.toml @@ -0,0 +1,13 @@ +[page.one.field.name] +file = "name.toml" + +[page.one.field.email] +file = "email.toml" +required = true + +[page.second] +file = "second.toml" + +[page.second.field.date] +required = true + diff --git a/templates/form-paged/fields/email.toml b/templates/form-paged/fields/email.toml new file mode 100644 index 0000000..3ef14e8 --- /dev/null +++ b/templates/form-paged/fields/email.toml @@ -0,0 +1,7 @@ +type = "email" +name = "email" +placeholder = "E-Mail" + +[attributes] +data-email = "test@example.org" + diff --git a/templates/form-paged/fields/name.toml b/templates/form-paged/fields/name.toml new file mode 100644 index 0000000..5c888b6 --- /dev/null +++ b/templates/form-paged/fields/name.toml @@ -0,0 +1,6 @@ +type = "text" +name = "name" + +[attributes] +data-value = 123 + diff --git a/templates/form-paged/fields/second.toml b/templates/form-paged/fields/second.toml new file mode 100644 index 0000000..bbc6ea7 --- /dev/null +++ b/templates/form-paged/fields/second.toml @@ -0,0 +1,3 @@ +[field.text] +placeholder = "Text placeholder" + |