2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
|
|
|
<form class="mk-setup" @submit.prevent="submit()">
|
|
|
|
<h1>Welcome to Misskey!</h1>
|
|
|
|
<div>
|
2020-07-24 18:56:52 +02:00
|
|
|
<p>{{ $t('intro') }}</p>
|
2020-01-29 20:37:25 +01:00
|
|
|
<mk-input v-model="username" pattern="^[a-zA-Z0-9_]{1,20}$" spellcheck="false" required>
|
2020-07-24 18:56:52 +02:00
|
|
|
<span>{{ $t('username') }}</span>
|
2020-01-29 20:37:25 +01:00
|
|
|
<template #prefix>@</template>
|
|
|
|
<template #suffix>@{{ host }}</template>
|
|
|
|
</mk-input>
|
|
|
|
<mk-input v-model="password" type="password">
|
2020-07-24 18:56:52 +02:00
|
|
|
<span>{{ $t('password') }}</span>
|
2020-01-29 20:37:25 +01:00
|
|
|
<template #prefix><fa :icon="faLock"/></template>
|
|
|
|
</mk-input>
|
|
|
|
<footer>
|
|
|
|
<mk-button primary type="submit" :disabled="submitting">{{ submitting ? $t('processing') : $t('done') }}<mk-ellipsis v-if="submitting"/></mk-button>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import { faLock } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import MkButton from '../components/ui/button.vue';
|
|
|
|
import MkInput from '../components/ui/input.vue';
|
|
|
|
import { host } from '../config';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
|
|
|
|
components: {
|
|
|
|
MkButton,
|
|
|
|
MkInput,
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
username: '',
|
|
|
|
password: '',
|
|
|
|
submitting: false,
|
|
|
|
host,
|
|
|
|
faLock
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
submit() {
|
|
|
|
if (this.submitting) return;
|
|
|
|
this.submitting = true;
|
|
|
|
|
|
|
|
this.$root.api('admin/accounts/create', {
|
|
|
|
username: this.username,
|
|
|
|
password: this.password,
|
|
|
|
}).then(res => {
|
|
|
|
localStorage.setItem('i', res.token);
|
|
|
|
location.href = '/';
|
|
|
|
}).catch(() => {
|
|
|
|
this.submitting = false;
|
|
|
|
|
|
|
|
this.$root.dialog({
|
|
|
|
type: 'error',
|
2020-03-22 02:51:40 +01:00
|
|
|
text: this.$t('error')
|
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);
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
> 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
> footer {
|
|
|
|
> * {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|