v-container.pa-0.pa-md-3
v-row.mt-md-5.ma-0(align='center' justify='center')
v-col.pa-0.pa-md-3(cols='12' md="6" lg="5" xl="4")
v-card
v-card-title {{$t('common.register')}}
v-card-text
p(v-html="$t('register.description')")
v-form(ref='form' v-model='valid')
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($t('common.description'))]"
:label="$t('common.description')")
v-card-actions
v-spacer
v-btn(@click='register' outlined
:disabled='!valid || loading' :loading='loading'
color='primary') {{$t('common.send')}}
v-icon(v-text='mdiChevronRight')