mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2025-12-07 08:53:00 +00:00
60 lines
1.5 KiB
Vue
60 lines
1.5 KiB
Vue
|
|
<template>
|
||
|
|
<div class="modal is-active" v-if="active">
|
||
|
|
<div class="modal-background" />
|
||
|
|
|
||
|
|
<div class="modal-card">
|
||
|
|
<form @submit.prevent="submit">
|
||
|
|
<header class="modal-card-head">
|
||
|
|
<p class="modal-card-title">Login</p>
|
||
|
|
<button class="delete" aria-label="close"></button>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<section class="modal-card-body">
|
||
|
|
<div class="field">
|
||
|
|
<label class="label">Username</label>
|
||
|
|
<div class="control">
|
||
|
|
<input class="input" type="text" v-model="username" />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="field">
|
||
|
|
<label class="label">Password</label>
|
||
|
|
<div class="control">
|
||
|
|
<input class="input" type="password" v-model="password" />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<footer class="modal-card-foot">
|
||
|
|
<button class="button is-success" @click="submit">Login</button>
|
||
|
|
<button class="button is-danger" @click="set_active(false)">
|
||
|
|
Cancel
|
||
|
|
</button>
|
||
|
|
</footer>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang="ts">
|
||
|
|
import { Vue } from "vue-class-component";
|
||
|
|
|
||
|
|
export default class LoginModal extends Vue {
|
||
|
|
private active = false;
|
||
|
|
private username = "";
|
||
|
|
private password = "";
|
||
|
|
|
||
|
|
public set_active(state: boolean): void {
|
||
|
|
this.active = state;
|
||
|
|
|
||
|
|
this.username = "";
|
||
|
|
this.password = "";
|
||
|
|
}
|
||
|
|
|
||
|
|
private submit(): void {
|
||
|
|
this.$advent22.set_api_auth(this.username, this.password);
|
||
|
|
this.set_active(false);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|