diff --git a/client/src/App.svelte b/client/src/App.svelte index 9d5f56d..b4c2c47 100644 --- a/client/src/App.svelte +++ b/client/src/App.svelte @@ -1,5 +1,6 @@ + +
+
+ +
+

Inbox

+ +
+
+ +
+ {#each notifications as notification,i (i)} +
+ + +
+ {notification.text} +
+ +
+
+ at {notification.time} +
+
+ +
+
+ {/each} +
+ +
+ +
+
+ +
+ + \ No newline at end of file diff --git a/client/src/CreateAccount.svelte b/client/src/CreateAccount.svelte index 3e3dadc..3882661 100644 --- a/client/src/CreateAccount.svelte +++ b/client/src/CreateAccount.svelte @@ -17,6 +17,7 @@ import Icon from "@iconify/svelte"; function create(){ if(type == "" || type == null) { alert("Account Name field can not be empty!"); + console.debug(`account name: ${type}`) }else if(!currencies.includes(currency)){ alert("Currency is not supported!"); }else if (!termsAccepted){ @@ -46,18 +47,18 @@ import Icon from "@iconify/svelte";

Open a new account

- +

Account name:

- +

Currency:

- +
diff --git a/client/src/Login.svelte b/client/src/Login.svelte index cbd87d5..1c3d965 100644 --- a/client/src/Login.svelte +++ b/client/src/Login.svelte @@ -23,11 +23,11 @@

Welcome,

- +
- +
diff --git a/client/src/MainPage.svelte b/client/src/MainPage.svelte index 56465c7..fb2cda3 100644 --- a/client/src/MainPage.svelte +++ b/client/src/MainPage.svelte @@ -20,6 +20,10 @@ {time: "15:38 27/11/2021", text: "A notification's text but longer aaaaaaaaaaaa asddagagfabsdhubaiufbau bdauhsbabsdbayub badysabdyba ybbdbasbd bbdabsdb aybdbaysbdya bybdabs bdabsdbadbua."}, {time: "15:38 27/11/2021", text: "A notification's text but way longer absdb aybdbaysbdya bybdabs bdabsd absdb aybdbaysbdya bybdabs bdabsd absdb aybdbaysbdya bybdabs bdabsd absdb aybdbaysbdya bybdabs bdabsd absdb aybdbaysbdya bybdabs bdabsd absdb aybdbaysbdya bybdabs bdabsd absdb aybdbaysbdya bybdabs bdabsd absdb aybdbaysbdya bybdabs bdabsd absdb aybdbaysbdya bybdabs bdabsd."}, {time: "15:38 27/11/2021", text: "A notification's text."}, + {time: "15:38 27/11/2021", text: "A notification's text."}, + {time: "15:38 27/11/2021", text: "A notification's text."}, + {time: "15:38 27/11/2021", text: "A notification's text."}, + {time: "15:38 27/11/2021", text: "A notification's text."}, ]; let accounts = [ diff --git a/client/src/SendMoney.svelte b/client/src/SendMoney.svelte new file mode 100644 index 0000000..3882661 --- /dev/null +++ b/client/src/SendMoney.svelte @@ -0,0 +1,80 @@ + + +
+
+ +
+

Open a new account

+ +
+
+ +
+

Account name:

+ +
+ +
+

Currency:

+ +
+ +
+

Terms of Service:

+ +

I have read and accepted the terms and conditions for creating a new account at FOXBANK.

+
+ + +
+ +
+ Confirm +
+ +
+
+ +
\ No newline at end of file