You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
uptime-kuma/src/pages/Setup.vue

100 lines
2.7 KiB

3 years ago
<template>
<div class="form-container">
<div class="form">
<form @submit.prevent="submit">
<div>
3 years ago
<object width="64" height="64" data="/icon.svg" />
<div style="font-size: 28px; font-weight: bold; margin-top: 5px;">
Uptime Kuma
</div>
3 years ago
</div>
3 years ago
<p class="mt-3">
Create your admin account
</p>
3 years ago
<div class="form-floating">
3 years ago
<input id="floatingInput" v-model="username" type="text" class="form-control" placeholder="Username" required>
3 years ago
<label for="floatingInput">Username</label>
</div>
<div class="form-floating mt-3">
3 years ago
<input id="floatingPassword" v-model="password" type="password" class="form-control" placeholder="Password" required>
3 years ago
<label for="floatingPassword">Password</label>
</div>
<div class="form-floating mt-3">
3 years ago
<input id="repeat" v-model="repeatPassword" type="password" class="form-control" placeholder="Repeat Password" required>
3 years ago
<label for="repeat">Repeat Password</label>
</div>
3 years ago
<button class="w-100 btn btn-primary mt-3" type="submit" :disabled="processing">
Create
</button>
3 years ago
</form>
</div>
</div>
</template>
<script>
3 years ago
import { useToast } from "vue-toastification"
3 years ago
const toast = useToast()
export default {
data() {
return {
processing: false,
username: "",
password: "",
repeatPassword: "",
}
},
mounted() {
this.$root.getSocket().emit("needSetup", (needSetup) => {
if (! needSetup) {
this.$router.push("/")
}
});
},
methods: {
submit() {
this.processing = true;
if (this.password !== this.repeatPassword) {
toast.error("Repeat password do not match.")
this.processing = false;
return;
}
this.$root.getSocket().emit("setup", this.username, this.password, (res) => {
this.processing = false;
this.$root.toastRes(res)
if (res.ok) {
this.$router.push("/")
}
})
3 years ago
},
},
3 years ago
}
</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>