mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-03-12 20:34:46 +00:00
78 lines
2.2 KiB
Vue
78 lines
2.2 KiB
Vue
<template>
|
|
<div class="form-container">
|
|
<div class="form">
|
|
<form @submit.prevent="submit">
|
|
<h1 class="h3 mb-3 fw-normal" />
|
|
|
|
<div class="form-floating">
|
|
<input id="floatingInput" v-model="username" type="text" class="form-control" placeholder="Username">
|
|
<label for="floatingInput">{{ $t("Username") }}</label>
|
|
</div>
|
|
|
|
<div class="form-floating mt-3">
|
|
<input id="floatingPassword" v-model="password" type="password" class="form-control" placeholder="Password">
|
|
<label for="floatingPassword">{{ $t("Password") }}</label>
|
|
</div>
|
|
|
|
<div class="form-check mb-3 mt-3 d-flex justify-content-center pe-4">
|
|
<div class="form-check">
|
|
<input id="remember" v-model="$root.remember" type="checkbox" value="remember-me" class="form-check-input">
|
|
|
|
<label class="form-check-label" for="remember">
|
|
{{ $t("Remember me") }}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<button class="w-100 btn btn-primary" type="submit" :disabled="processing">
|
|
{{ $t("Login") }}
|
|
</button>
|
|
|
|
<div v-if="res && !res.ok" class="alert alert-danger mt-3" role="alert">
|
|
{{ res.msg }}
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
processing: false,
|
|
username: "",
|
|
password: "",
|
|
|
|
res: null,
|
|
}
|
|
},
|
|
methods: {
|
|
submit() {
|
|
this.processing = true;
|
|
this.$root.login(this.username, this.password, (res) => {
|
|
this.processing = false;
|
|
this.res = res;
|
|
})
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
.form-container {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-top: 40px;
|
|
padding-bottom: 40px;
|
|
}
|
|
|
|
.form {
|
|
|
|
width: 100%;
|
|
max-width: 330px;
|
|
padding: 15px;
|
|
margin: auto;
|
|
text-align: center;
|
|
}
|
|
</style>
|