//- el-card.mt-5
//- div(slot='header')
//- h4 App authorization
div(v-if='client')
h5 {{$auth.user.email}}
p External application {{client.name}} want following permission grants:
ul
li(v-for="scope in $route.query.scope.split(' ')") {{scope}}
span You will be redirected to {{$route.query.redirect_uri}}
el-row.mt-3(justify='center')
el-col(:span='12' :offset='6' style='text-align: center')
a(:href='authorizeURL')
el-button.mr-1(plain type='success') {{$t('common.authorize')}}
a(to='/')
el-button.mt-1(plain type='warning') {{$t('common.cancel')}}