egirlskey/packages/frontend/src/pages/welcome.setup.vue

105 lines
2.5 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
<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">
<div>Welcome to Misskey!</div>
<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>
<template #prefix><i class="ti ti-lock"></i></template>
</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>
</template>
2022-09-06 08:37:58 +00:00
<script lang="ts" setup>
import { } from 'vue';
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';
2022-09-06 08:37:58 +00:00
let username = $ref('');
let password = $ref('');
let submitting = $ref(false);
2022-09-06 08:37:58 +00:00
function submit() {
if (submitting) return;
submitting = true;
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;
2022-09-06 08:37:58 +00:00
os.alert({
type: 'error',
text: i18n.ts.somethingHappened,
});
});
}
</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;
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
}
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;
}
2023-05-07 01:04:14 +00:00
.version {
font-size: 70%;
font-weight: normal;
opacity: 0.7;
}
</style>