v-row.mt-5(align='center' justify='center')
v-col(cols='12' sm='10' md="6")
v-card
v-card-title {{$t('common.register')}}
v-card-text
p(v-html="$t('register.description')")
v-form(ref='form')
v-text-field(ref='email'
v-model='user.email' type='email'
:rules="validators.email"
:label='$t("common.email")' autocomplete='email')
v-text-field(v-model='user.password' type="password"
:rules="validators.password"
:label="$t('common.password')")
v-textarea(v-model='user.description'
:rules="[validators.required('description')]"
:label="$t('common.description')")
v-card-actions
v-btn(@click='register' color='primary') {{$t('common.send')}}
v-icon mdi-chevron-right