-
-
-
-
+
diff --git a/src/static/client/src/components/Settings/updatePassword.vue b/src/static/client/src/components/Settings/updatePassword.vue
new file mode 100644
index 0000000..ebeadcf
--- /dev/null
+++ b/src/static/client/src/components/Settings/updatePassword.vue
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/static/client/src/views/index.vue b/src/static/client/src/views/index.vue
index 868e110..960a0d1 100644
--- a/src/static/client/src/views/index.vue
+++ b/src/static/client/src/views/index.vue
@@ -6,18 +6,12 @@ import Configuration from "@/components/Configuration/configuration.vue";
const store = clientStore()
const loading = ref(true)
-const loadConfigurations = async () => {
-
- await store.getConfigurations()
-
-}
-
const configurations = computed(() => {
return store.configurations
});
onMounted(async () => {
- await loadConfigurations();
+ await store.getConfigurations()
loading.value = false;
})
diff --git a/src/static/client/src/views/settings.vue b/src/static/client/src/views/settings.vue
index de1a34a..b8028c2 100644
--- a/src/static/client/src/views/settings.vue
+++ b/src/static/client/src/views/settings.vue
@@ -1,6 +1,7 @@