From b76cbe77c71f93acafd6eb1892023270195908fc Mon Sep 17 00:00:00 2001 From: DariusTFox Date: Wed, 8 Dec 2021 16:21:06 +0200 Subject: [PATCH] Partial implementation of select instead of text for currency type --- client/src/CreateAccount.svelte | 39 +++++++++++++++++++++++++++++++-- 1 file changed, 37 insertions(+), 2 deletions(-) diff --git a/client/src/CreateAccount.svelte b/client/src/CreateAccount.svelte index 678184a..d8c7955 100644 --- a/client/src/CreateAccount.svelte +++ b/client/src/CreateAccount.svelte @@ -14,7 +14,12 @@ const dispatch = createEventDispatcher(); let type = ""; - let currencies = ["RON", "EUR"]; + let currencies = [ + "RON", + "USD", + "EUR", + "GPD", + ]; let currency = currencies[0]; let termsAccepted = false; @@ -71,7 +76,12 @@

Currency:

- + +
@@ -93,3 +103,28 @@
+ + + \ No newline at end of file