summaryrefslogtreecommitdiffstats
path: root/webapp
diff options
context:
space:
mode:
authorJannik Schönartz2019-02-26 08:18:52 +0100
committerJannik Schönartz2019-02-26 08:18:52 +0100
commitdcd82e1c5847151678ae7ffc982b4595304c1eeb (patch)
treed3a7ea5a6390e0c1c2bb49ef24f31b1ddec50606 /webapp
parent[webapp/configurator] disable touch swipe tabs switching (diff)
downloadbas-dcd82e1c5847151678ae7ffc982b4595304c1eeb.tar.gz
bas-dcd82e1c5847151678ae7ffc982b4595304c1eeb.tar.xz
bas-dcd82e1c5847151678ae7ffc982b4595304c1eeb.zip
[authentication] Rewrite code in async/await, fix edit account module
Diffstat (limited to 'webapp')
-rw-r--r--webapp/src/components/StartPageSetup.vue9
1 files changed, 5 insertions, 4 deletions
diff --git a/webapp/src/components/StartPageSetup.vue b/webapp/src/components/StartPageSetup.vue
index 36ad648..1bde01c 100644
--- a/webapp/src/components/StartPageSetup.vue
+++ b/webapp/src/components/StartPageSetup.vue
@@ -33,9 +33,11 @@
<template>
<div class="setup-page">
- <label style="color: red; font-size: large">{{ $t('createRoot') }}</label>
- <signup v-model="user" ref="setupRoot"></signup>
- <v-btn @click="setup" class="setup-button primary" raised>{{ $t('signup') }}</v-btn>
+ <label class="error--text" style="font-size: large; margin-bottom: 20px;margin-top: -20px;">{{ $t('createRoot') }}</label>
+ <div class="text-xs-right">
+ <signup v-model="user" ref="setupRoot"></signup>
+ <v-btn @click="setup" class="setup-button primary" raised>{{ $t('signup') }}</v-btn>
+ </div>
</div>
</template>
@@ -94,6 +96,5 @@ export default {
.setup-button {
margin-top: 20px;
- float: right;
}
</style>