-
-
-

Welcome to Sunshine!

-

- Before Getting Started, write down below these credentials -

-
-
+
+

Welcome to Sunshine!

+

+ Before Getting Started, write down below these credentials +

+
These Credentials down below are needed to access the rest of the application.
Keep them safe, since you will never see them again!
-
+
- +
- +
- +
- +
Error: {{error}}
Success! This page will reload soon, your browser will ask you for @@ -55,6 +67,7 @@ return { error: null, success: false, + loading: false, passwordData: { newUsername: "sunshine", newPassword: "", @@ -65,10 +78,12 @@ methods: { save() { this.error = null; + this.loading = true; fetch("/api/password", { method: "POST", body: JSON.stringify(this.passwordData), }).then((r) => { + this.loading = false; if (r.status == 200) { r.json().then((rj) => { if (rj.status.toString() === "true") {