akkoma-fe/src/components/login_form/login_form.vue

45 lines
816 B
Vue
Raw Normal View History

2016-10-27 16:02:41 +00:00
<template>
<div class="login panel panel-default">
2016-10-27 16:02:41 +00:00
<!-- Default panel contents -->
<div class="panel-heading">
{{$t('login.login')}}
2016-10-27 16:02:41 +00:00
</div>
<div class="panel-body">
2018-10-26 13:16:23 +00:00
<form v-on:submit.prevent='oAuthLogin' class="login-form">
2016-10-27 16:02:41 +00:00
<div class='form-group'>
2018-10-26 13:16:23 +00:00
<button class="btn btn-default">Login with OAuth</button>
</div>
2016-10-27 16:02:41 +00:00
</form>
</div>
</div>
</template>
<script src="./login_form.js" ></script>
<style lang="scss">
@import '../../_variables.scss';
.login-form {
.btn {
min-height: 28px;
width: 10em;
}
2018-04-07 16:30:27 +00:00
.error {
text-align: center;
}
2018-04-07 16:30:27 +00:00
.register {
flex: 1 1;
}
2018-04-07 16:30:27 +00:00
.login-bottom {
margin-top: 1.0em;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
}
</style>