Merge pull request #1317 from Bnyro/fix

Small QoL changes
This commit is contained in:
Kavin 2022-08-19 01:08:41 +05:30 committed by GitHub
commit b16c1ca465
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 1 deletions

View File

@ -206,6 +206,10 @@ h2 {
}
.line {
@apply px-2.5 py-0.25 my-0.45 rounded-xl bg-white;
@apply px-2.5 py-0.25 my-0.45 rounded-xl bg-dark-900;
}
.dark .line {
@apply bg-white;
}
</style>

View File

@ -11,6 +11,7 @@
autocomplete="username"
:placeholder="$t('login.username')"
:aria-label="$t('login.username')"
v-on:keyup.enter="login"
/>
</div>
<div>
@ -21,6 +22,7 @@
autocomplete="password"
:placeholder="$t('login.password')"
:aria-label="$t('login.password')"
v-on:keyup.enter="login"
/>
</div>
<div>
@ -49,6 +51,7 @@ export default {
},
methods: {
login() {
if (!this.username || !this.password) return;
this.fetchJson(this.authApiUrl() + "/login", null, {
method: "POST",
body: JSON.stringify({

View File

@ -11,6 +11,7 @@
autocomplete="username"
:placeholder="$t('login.username')"
:aria-label="$t('login.username')"
v-on:keyup.enter="register"
/>
</div>
<div>
@ -21,6 +22,7 @@
autocomplete="password"
:placeholder="$t('login.password')"
:aria-label="$t('login.password')"
v-on:keyup.enter="register"
/>
</div>
<div>
@ -49,6 +51,7 @@ export default {
},
methods: {
register() {
if (!this.username || !this.password) return;
this.fetchJson(this.authApiUrl() + "/register", null, {
method: "POST",
body: JSON.stringify({