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