2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
|
|
|
<form class="mk-setup" @submit.prevent="submit()">
|
|
|
|
<h1>Welcome to Misskey!</h1>
|
2022-02-25 10:56:59 +00:00
|
|
|
<div class="_formRoot">
|
2020-12-26 01:47:36 +00:00
|
|
|
<p>{{ $ts.intro }}</p>
|
2022-07-04 08:35:27 +00:00
|
|
|
<MkInput v-model="username" pattern="^[a-zA-Z0-9_]{1,20}$" :spellcheck="false" required data-cy-admin-username class="_formBlock">
|
2021-08-06 13:29:19 +00:00
|
|
|
<template #label>{{ $ts.username }}</template>
|
2020-01-29 19:37:25 +00:00
|
|
|
<template #prefix>@</template>
|
|
|
|
<template #suffix>@{{ host }}</template>
|
2020-10-17 11:12:00 +00:00
|
|
|
</MkInput>
|
2022-02-25 10:56:59 +00:00
|
|
|
<MkInput v-model="password" type="password" data-cy-admin-password class="_formBlock">
|
2021-08-06 13:29:19 +00:00
|
|
|
<template #label>{{ $ts.password }}</template>
|
2022-12-19 10:01:30 +00:00
|
|
|
<template #prefix><i class="ti ti-lock"></i></template>
|
2020-10-17 11:12:00 +00:00
|
|
|
</MkInput>
|
2022-02-25 10:56:59 +00:00
|
|
|
<div class="bottom _formBlock">
|
2022-02-25 11:17:36 +00:00
|
|
|
<MkButton gradate type="submit" :disabled="submitting" data-cy-admin-ok>
|
2021-08-12 10:05:07 +00:00
|
|
|
{{ submitting ? $ts.processing : $ts.done }}<MkEllipsis v-if="submitting"/>
|
|
|
|
</MkButton>
|
2022-02-25 10:56:59 +00:00
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</template>
|
|
|
|
|
2022-09-06 08:37:58 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import MkInput from '@/components/form/input.vue';
|
|
|
|
import { host } from '@/config';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { login } from '@/account';
|
2022-09-06 08:37:58 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-09-06 08:37:58 +00:00
|
|
|
let username = $ref('');
|
|
|
|
let password = $ref('');
|
|
|
|
let submitting = $ref(false);
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-09-06 08:37:58 +00:00
|
|
|
function submit() {
|
|
|
|
if (submitting) return;
|
|
|
|
submitting = true;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-09-06 08:37:58 +00:00
|
|
|
os.api('admin/accounts/create', {
|
|
|
|
username: username,
|
|
|
|
password: password,
|
|
|
|
}).then(res => {
|
|
|
|
return login(res.token);
|
|
|
|
}).catch(() => {
|
|
|
|
submitting = 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>
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2020-01-29 19:37:25 +00:00
|
|
|
.mk-setup {
|
|
|
|
border-radius: var(--radius);
|
|
|
|
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2021-05-04 12:21:02 +00:00
|
|
|
max-width: 500px;
|
|
|
|
margin: 32px auto;
|
2020-01-29 19:37:25 +00: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 10:56:59 +00:00
|
|
|
> .bottom {
|
2020-01-29 19:37:25 +00:00
|
|
|
> * {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|