feat(front): add fw button to signup form
This commit is contained in:
parent
f5c76d5f65
commit
086659e888
|
@ -6,6 +6,8 @@ import { computed, reactive, ref, watchEffect } from 'vue'
|
||||||
import { useI18n } from 'vue-i18n'
|
import { useI18n } from 'vue-i18n'
|
||||||
import { useStore } from '~/store'
|
import { useStore } from '~/store'
|
||||||
|
|
||||||
|
import { FwButton } from '@funkwhale/ui'
|
||||||
|
|
||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
|
|
||||||
import LoginForm from '~/components/auth/LoginForm.vue'
|
import LoginForm from '~/components/auth/LoginForm.vue'
|
||||||
|
@ -213,11 +215,13 @@ fetchInstanceSettings()
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<button
|
<fw-button
|
||||||
:class="['ui', buttonClasses, {'loading': isLoading}, ' right floated button']"
|
color="primary"
|
||||||
|
class="right floated"
|
||||||
|
:is-loading="isLoading"
|
||||||
type="submit"
|
type="submit"
|
||||||
>
|
>
|
||||||
{{ $t('components.auth.SignupForm.button.create') }}
|
{{ $t('components.auth.SignupForm.button.create') }}
|
||||||
</button>
|
</fw-button>
|
||||||
</form>
|
</form>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue