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