diff options
Diffstat (limited to 'templates/config/templates/field-input.html')
-rw-r--r-- | templates/config/templates/field-input.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/config/templates/field-input.html b/templates/config/templates/field-input.html new file mode 100644 index 0000000..407bde0 --- /dev/null +++ b/templates/config/templates/field-input.html @@ -0,0 +1,9 @@ +<input + type="{{ field.type }}" + name="{{ field.name }}" + placeholder="{{ field.placeholder }}" + {% for key, value in field.attributes %} + {{ key }}="{{ value }}" + {% endfor %} +> + |