Sharkey/src/client/app/mobile/views/pages/signup.vue

29 lines
442 B
Vue
Raw Normal View History

2018-02-21 22:16:38 +02:00
<template>
<div class="signup">
<h1>{{ $t('lets-start') }}</h1>
2018-06-14 03:51:55 +03:00
<mk-signup/>
2018-02-21 22:16:38 +02:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
export default Vue.extend({
i18n: i18n('mobile/views/pages/signup.vue'),});
2018-02-21 22:16:38 +02:00
</script>
<style lang="stylus" scoped>
.signup
2018-06-14 03:51:55 +03:00
padding 32px
2018-02-21 22:16:38 +02:00
margin 0 auto
max-width 500px
h1
margin 0
2018-06-14 08:52:37 +03:00
padding 8px 0 0 0
2018-02-21 22:16:38 +02:00
font-size 1.5em
2018-06-14 03:51:55 +03:00
font-weight bold
color #444
2018-02-21 22:16:38 +02:00
</style>