2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<form class="mk-setup" @submit.prevent="submit()">
|
|
|
|
<h1>Welcome to Calckey!</h1>
|
|
|
|
<div class="_formRoot">
|
|
|
|
<p>{{ i18n.ts.intro }}</p>
|
|
|
|
<MkInput
|
|
|
|
v-model="username"
|
|
|
|
pattern="^[a-zA-Z0-9_]{1,20}$"
|
|
|
|
:spellcheck="false"
|
|
|
|
required
|
|
|
|
data-cy-admin-username
|
|
|
|
class="_formBlock"
|
|
|
|
>
|
|
|
|
<template #label>{{ i18n.ts.username }}</template>
|
|
|
|
<template #prefix>@</template>
|
|
|
|
<template #suffix>@{{ host }}</template>
|
|
|
|
</MkInput>
|
|
|
|
<MkInput
|
|
|
|
v-model="password"
|
|
|
|
type="password"
|
|
|
|
data-cy-admin-password
|
|
|
|
class="_formBlock"
|
|
|
|
>
|
|
|
|
<template #label>{{ i18n.ts.password }}</template>
|
|
|
|
<template #prefix
|
|
|
|
><i class="ph-lock ph-bold ph-lg"></i
|
|
|
|
></template>
|
|
|
|
</MkInput>
|
|
|
|
<div class="bottom _formBlock">
|
|
|
|
<MkButton
|
|
|
|
gradate
|
|
|
|
type="submit"
|
|
|
|
:disabled="submitting"
|
|
|
|
data-cy-admin-ok
|
|
|
|
>
|
|
|
|
{{ submitting ? i18n.ts.processing : i18n.ts.done
|
|
|
|
}}<MkEllipsis v-if="submitting" />
|
|
|
|
</MkButton>
|
|
|
|
</div>
|
2022-02-25 11:56:59 +01:00
|
|
|
</div>
|
2023-04-08 02:01:42 +02:00
|
|
|
</form>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-08-01 22:57:34 +02:00
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import {} from "vue";
|
|
|
|
import MkButton from "@/components/MkButton.vue";
|
|
|
|
import MkInput from "@/components/form/input.vue";
|
|
|
|
import { host } from "@/config";
|
|
|
|
import * as os from "@/os";
|
|
|
|
import { login } from "@/account";
|
|
|
|
import { i18n } from "@/i18n";
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
let username = $ref("");
|
|
|
|
let password = $ref("");
|
2022-08-01 22:57:34 +02:00
|
|
|
let submitting = $ref(false);
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-09-06 10:37:58 +02:00
|
|
|
function submit() {
|
2022-08-01 22:57:34 +02:00
|
|
|
if (submitting) return;
|
|
|
|
submitting = true;
|
2023-04-08 02:01:42 +02:00
|
|
|
os.api("admin/accounts/create", {
|
2022-09-06 10:37:58 +02:00
|
|
|
username: username,
|
|
|
|
password: password,
|
2023-04-08 02:01:42 +02:00
|
|
|
})
|
|
|
|
.then((res) => {
|
|
|
|
os.api("admin/accounts/hosted").then((res) => {
|
|
|
|
if (res != null && res === true) {
|
|
|
|
os.alert({
|
|
|
|
type: "success",
|
|
|
|
title: "Thank you!",
|
|
|
|
text: "Your hosting provider has set your settings for you. Enjoy your new instance!",
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return login(res?.token);
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
submitting = false;
|
|
|
|
os.alert({
|
|
|
|
type: "error",
|
|
|
|
text: i18n.ts.somethingHappened,
|
|
|
|
});
|
2022-08-01 22:57:34 +02:00
|
|
|
});
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mk-setup {
|
|
|
|
border-radius: var(--radius);
|
|
|
|
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
|
2021-03-02 14:57:16 +01:00
|
|
|
overflow: hidden;
|
2021-05-04 14:21:02 +02:00
|
|
|
max-width: 500px;
|
|
|
|
margin: 32px auto;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
> h1 {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1.5em;
|
|
|
|
text-align: center;
|
|
|
|
padding: 32px;
|
|
|
|
background: var(--accent);
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
> div {
|
|
|
|
padding: 32px;
|
|
|
|
background: var(--panel);
|
|
|
|
|
|
|
|
> p {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2022-02-25 11:56:59 +01:00
|
|
|
> .bottom {
|
2020-01-29 20:37:25 +01:00
|
|
|
> * {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|