aboutsummaryrefslogtreecommitdiff
path: root/src/client/Utils/Form.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/Utils/Form.elm')
-rw-r--r--src/client/Utils/Form.elm13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/client/Utils/Form.elm b/src/client/Utils/Form.elm
new file mode 100644
index 0000000..8d75a32
--- /dev/null
+++ b/src/client/Utils/Form.elm
@@ -0,0 +1,13 @@
+module Utils.Form exposing
+ ( fieldAsText
+ )
+
+import Form exposing (Form)
+
+import Model.Payment exposing (Frequency(..))
+
+fieldAsText : Form a b -> String -> String
+fieldAsText form field =
+ Form.getFieldAsString field form
+ |> .value
+ |> Maybe.withDefault ""