2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-06-01 08:19:46 +00:00
|
|
|
<div>
|
2023-05-17 01:52:22 +00:00
|
|
|
<MkAnimBg style="position: fixed; top: 0;"/>
|
|
|
|
<div :class="$style.formContainer">
|
|
|
|
<form :class="$style.form" class="_panel" @submit.prevent="submit()">
|
|
|
|
<div :class="$style.title">
|
2023-09-23 04:11:28 +00:00
|
|
|
<div>Welcome to Sharkey!</div>
|
2023-05-17 01:52:22 +00:00
|
|
|
<div :class="$style.version">v{{ version }}</div>
|
|
|
|
</div>
|
|
|
|
<div class="_gaps_m" style="padding: 32px;">
|
|
|
|
<div>{{ i18n.ts.intro }}</div>
|
|
|
|
<MkInput v-model="username" pattern="^[a-zA-Z0-9_]{1,20}$" :spellcheck="false" required data-cy-admin-username>
|
|
|
|
<template #label>{{ i18n.ts.username }}</template>
|
|
|
|
<template #prefix>@</template>
|
|
|
|
<template #suffix>@{{ host }}</template>
|
|
|
|
</MkInput>
|
|
|
|
<MkInput v-model="password" type="password" data-cy-admin-password>
|
|
|
|
<template #label>{{ i18n.ts.password }}</template>
|
2023-09-30 19:53:52 +00:00
|
|
|
<template #prefix><i class="ph-lock ph-bold ph-lg"></i></template>
|
2023-05-17 01:52:22 +00:00
|
|
|
</MkInput>
|
|
|
|
<div>
|
|
|
|
<MkButton gradate large rounded type="submit" :disabled="submitting" data-cy-admin-ok style="margin: 0 auto;">
|
|
|
|
{{ submitting ? i18n.ts.processing : i18n.ts.done }}<MkEllipsis v-if="submitting"/>
|
|
|
|
</MkButton>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
2023-05-07 01:04:14 +00:00
|
|
|
</div>
|
2023-05-17 01:52:22 +00:00
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-09-06 08:37:58 +00:00
|
|
|
<script lang="ts" setup>
|
2023-12-07 05:42:09 +00:00
|
|
|
import { ref } from 'vue';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-01-07 06:09:46 +00:00
|
|
|
import MkInput from '@/components/MkInput.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { host, version } from '@/config.js';
|
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { login } from '@/account.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
2023-05-17 01:52:22 +00:00
|
|
|
import MkAnimBg from '@/components/MkAnimBg.vue';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const username = ref('');
|
|
|
|
const password = ref('');
|
|
|
|
const submitting = ref(false);
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-09-06 08:37:58 +00:00
|
|
|
function submit() {
|
2023-12-07 05:42:09 +00:00
|
|
|
if (submitting.value) return;
|
|
|
|
submitting.value = true;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-09-06 08:37:58 +00:00
|
|
|
os.api('admin/accounts/create', {
|
2023-12-07 05:42:09 +00:00
|
|
|
username: username.value,
|
|
|
|
password: password.value,
|
2022-09-06 08:37:58 +00:00
|
|
|
}).then(res => {
|
|
|
|
return login(res.token);
|
|
|
|
}).catch(() => {
|
2023-12-07 05:42:09 +00:00
|
|
|
submitting.value = false;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-09-06 08:37:58 +00:00
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: i18n.ts.somethingHappened,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2023-05-07 01:04:14 +00:00
|
|
|
<style lang="scss" module>
|
2023-05-17 01:52:22 +00:00
|
|
|
.formContainer {
|
|
|
|
min-height: 100svh;
|
|
|
|
padding: 32px 32px 64px 32px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: grid;
|
|
|
|
place-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form {
|
|
|
|
position: relative;
|
|
|
|
z-index: 10;
|
2020-01-29 19:37:25 +00:00
|
|
|
border-radius: var(--radius);
|
|
|
|
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
|
2023-05-17 01:52:22 +00:00
|
|
|
overflow: clip;
|
2021-05-04 12:21:02 +00:00
|
|
|
max-width: 500px;
|
2023-05-07 01:04:14 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-05-07 01:04:14 +00:00
|
|
|
.title {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1.5em;
|
|
|
|
text-align: center;
|
|
|
|
padding: 32px;
|
|
|
|
background: var(--accentedBg);
|
|
|
|
color: var(--accent);
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-05-07 01:04:14 +00:00
|
|
|
.version {
|
|
|
|
font-size: 70%;
|
|
|
|
font-weight: normal;
|
|
|
|
opacity: 0.7;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
</style>
|