diff options
Diffstat (limited to 'templates/config')
-rw-r--r-- | templates/config/config.toml | 14 | ||||
-rw-r--r-- | templates/config/templates/email/email.html | 2 | ||||
-rw-r--r-- | templates/config/templates/field-input.html | 9 | ||||
-rw-r--r-- | templates/config/templates/form.html | 8 |
4 files changed, 0 insertions, 33 deletions
diff --git a/templates/config/config.toml b/templates/config/config.toml deleted file mode 100644 index 8f9a76f..0000000 --- a/templates/config/config.toml +++ /dev/null @@ -1,14 +0,0 @@ -[app] -title = "Flat-File Forms" - -[email] -host = "localhost" -user = "root" -password = 123456 - -[api] -keys = [] - -[api.cors] -origins = [] - diff --git a/templates/config/templates/email/email.html b/templates/config/templates/email/email.html deleted file mode 100644 index 3c706b1..0000000 --- a/templates/config/templates/email/email.html +++ /dev/null @@ -1,2 +0,0 @@ -<h1>Hello this is E-Mail!</h1> - diff --git a/templates/config/templates/field-input.html b/templates/config/templates/field-input.html deleted file mode 100644 index 407bde0..0000000 --- a/templates/config/templates/field-input.html +++ /dev/null @@ -1,9 +0,0 @@ -<input - type="{{ field.type }}" - name="{{ field.name }}" - placeholder="{{ field.placeholder }}" - {% for key, value in field.attributes %} - {{ key }}="{{ value }}" - {% endfor %} -> - diff --git a/templates/config/templates/form.html b/templates/config/templates/form.html deleted file mode 100644 index b880ee4..0000000 --- a/templates/config/templates/form.html +++ /dev/null @@ -1,8 +0,0 @@ -<form action="{{ form.action }}" method="POST"> - {{ csrf() }} - - {% for field in fields %} - {{ field.render() }} - {% endfor %} -</form> - |