Add back that login error thing that someone removed

This commit is contained in:
shpuld 2019-01-28 17:43:51 +02:00
parent 3b1cafc19f
commit 1b76a5a9ea
4 changed files with 52 additions and 22 deletions

View file

@ -33,6 +33,12 @@
</div>
</div>
</form>
<div v-if="authError" class='form-group'>
<div class='alert error'>
{{authError}}
<i class="button-icon icon-cancel" @click="clearError"></i>
</div>
</div>
</div>
</div>
</template>
@ -48,10 +54,6 @@
width: 10em;
}
.error {
text-align: center;
}
.register {
flex: 1 1;
}
@ -64,4 +66,14 @@
justify-content: space-between;
}
}
.login {
.error {
text-align: center;
animation-name: shakeError;
animation-duration: 0.4s;
animation-timing-function: ease-in-out;
}
}
</style>