Erweiterung zum Log in

This commit is contained in:
Xenia Gruenzinger 2019-06-18 14:25:09 +02:00
parent 773408dc12
commit e108be1fb8

View File

@ -23,6 +23,7 @@ Vue.component('login-panel', {
</b-input> </b-input>
</b-field> </b-field>
<b-checkbox>Eingeloggt bleiben</b-checkbox> <b-checkbox>Eingeloggt bleiben</b-checkbox>
<div v-if="showError" style="color:red;"> Versuche es nochmal.</div>
</section> </section>
<footer class="modal-card-foot"> <footer class="modal-card-foot">
<button class="button" type="button" @click="$parent.close()">Close</button> <button class="button" type="button" @click="$parent.close()">Close</button>
@ -35,14 +36,17 @@ Vue.component('login-panel', {
return { return {
user: "name", user: "name",
pwd:"password", pwd:"password",
showError:false,
}; };
}, },
methods: { methods: {
checkData(){ checkData(){
if(this.user === "name" && this.pwd === "password"){ if(this.user === "name" && this.pwd === "password"){
console.log("correct"); console.log("correct");
this.$parent.close();
}else{ }else{
console.log("wrong"); console.log("wrong");
this.showError=true;
} }
}, },