blob: 65b02e967d3b8940c122409ddcdad4225353877f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<template>
<div class="signup">
<h1>{{ $t('lets-start') }}</h1>
<mk-signup/>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
export default Vue.extend({
i18n: i18n('mobile/views/pages/signup.vue'),});
</script>
<style lang="stylus" scoped>
.signup
padding 32px
margin 0 auto
max-width 500px
h1
margin 0
padding 8px 0 0 0
font-size 1.5em
font-weight bold
color #444
</style>
|