mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-12-27 10:20:27 +01:00
implement frontend
This commit is contained in:
parent
4cb1773147
commit
9b6a3a4bb7
3 changed files with 27 additions and 2 deletions
8
locales/index.d.ts
vendored
8
locales/index.d.ts
vendored
|
@ -5222,6 +5222,14 @@ export interface Locale extends ILocale {
|
|||
* 注意事項を理解した上でオンにします。
|
||||
*/
|
||||
"acknowledgeNotesAndEnable": string;
|
||||
/**
|
||||
* ユーザー名を使う
|
||||
*/
|
||||
"useUsername": string;
|
||||
/**
|
||||
* メールアドレスを使う
|
||||
*/
|
||||
"useEmail": string;
|
||||
"_accountSettings": {
|
||||
/**
|
||||
* コンテンツの表示にログインを必須にする
|
||||
|
|
|
@ -1301,6 +1301,8 @@ lockdown: "ロックダウン"
|
|||
pleaseSelectAccount: "アカウントを選択してください"
|
||||
availableRoles: "利用可能なロール"
|
||||
acknowledgeNotesAndEnable: "注意事項を理解した上でオンにします。"
|
||||
useUsername: "ユーザー名を使う"
|
||||
useEmail: "メールアドレスを使う"
|
||||
|
||||
_accountSettings:
|
||||
requireSigninToViewContents: "コンテンツの表示にログインを必須にする"
|
||||
|
|
|
@ -32,9 +32,23 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
|
||||
<!-- username入力 -->
|
||||
<form class="_gaps_s" @submit.prevent="emit('usernameSubmitted', username)">
|
||||
<MkInput v-model="username" :placeholder="i18n.ts.username" type="text" pattern="^[a-zA-Z0-9_]+$" :spellcheck="false" autocomplete="username webauthn" autofocus required data-cy-signin-username>
|
||||
<template #prefix>@</template>
|
||||
<MkInput
|
||||
v-model="username"
|
||||
:placeholder="isEmail ? i18n.ts.emailAddress : i18n.ts.username"
|
||||
:type="isEmail ? 'email' : 'text'"
|
||||
:pattern="isEmail ? '^[^@]+@[^@]+$' : undefined"
|
||||
:spellcheck="false"
|
||||
:autocomplete="isEmail ? 'email' : 'username webauthn'"
|
||||
autofocus
|
||||
required
|
||||
data-cy-signin-username
|
||||
>
|
||||
<template #prefix>
|
||||
<i v-if="isEmail" class="ti ti-email"></i>
|
||||
<span v-else>@</span>
|
||||
</template>
|
||||
<template #suffix>@{{ host }}</template>
|
||||
<template #caption><button class="_textButton" type="button" @click="isEmail = !isEmail">{{ isEmail ? i18n.ts.useUsername : i18n.ts.useEmail }}</button></template>
|
||||
</MkInput>
|
||||
<MkButton type="submit" large primary rounded style="margin: 0 auto;" data-cy-signin-page-input-continue>{{ i18n.ts.continue }} <i class="ti ti-arrow-right"></i></MkButton>
|
||||
</form>
|
||||
|
@ -82,6 +96,7 @@ const emit = defineEmits<{
|
|||
const host = toUnicode(configHost);
|
||||
|
||||
const username = ref('');
|
||||
const isEmail = ref(false);
|
||||
|
||||
//#region Open on remote
|
||||
function openRemote(options: OpenOnRemoteOptions, targetHost?: string): void {
|
||||
|
|
Loading…
Reference in a new issue