mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
205 lines
8.4 KiB
Vue
205 lines
8.4 KiB
Vue
<template>
|
|
<AuthContentWrapper ref="auth">
|
|
|
|
<!--Registration-->
|
|
<AuthContent name="sign-up" :visible="true">
|
|
<img v-if="config.app_logo" class="logo" :src="$getImage(config.app_logo)" :alt="config.app_name">
|
|
<b v-if="! config.app_logo" class="auth-logo-text">{{ config.app_name }}</b>
|
|
|
|
<h1>{{ $t('page_registration.title') }}</h1>
|
|
<h2>{{ $t('page_registration.subtitle') }}:</h2>
|
|
|
|
<ValidationObserver @submit.prevent="signUp" ref="sign_up" v-slot="{ invalid }" tag="form"
|
|
class="form block-form">
|
|
|
|
<div class="block-wrapper">
|
|
<label>{{ $t('page_registration.label_email') }}:</label>
|
|
<ValidationProvider tag="div" mode="passive" class="input-wrapper" name="E-Mail" rules="required"
|
|
v-slot="{ errors }">
|
|
<input v-model="register.email" :placeholder="$t('page_registration.placeholder_email')" type="email"
|
|
class="focus-border-theme"
|
|
:class="{'is-error': errors[0]}"/>
|
|
<span class="error-message" v-if="errors[0]">{{ errors[0] }}</span>
|
|
</ValidationProvider>
|
|
</div>
|
|
|
|
<div class="block-wrapper">
|
|
<label>{{ $t('page_registration.label_name') }}:</label>
|
|
<ValidationProvider tag="div" mode="passive" class="input-wrapper" name="Full Name" rules="required"
|
|
v-slot="{ errors }">
|
|
<input v-model="register.name" :placeholder="$t('page_registration.placeholder_name')" type="text"
|
|
class="focus-border-theme"
|
|
:class="{'is-error': errors[0]}"/>
|
|
<span class="error-message" v-if="errors[0]">{{ errors[0] }}</span>
|
|
</ValidationProvider>
|
|
</div>
|
|
|
|
<div class="block-wrapper">
|
|
<label>{{ $t('page_registration.label_pass') }}:</label>
|
|
<ValidationProvider tag="div" mode="passive" class="input-wrapper" name="Your New Password"
|
|
rules="required" v-slot="{ errors }">
|
|
<input v-model="register.password" :placeholder="$t('page_registration.placeholder_pass')" type="password"
|
|
class="focus-border-theme"
|
|
:class="{'is-error': errors[0]}"/>
|
|
<span class="error-message" v-if="errors[0]">{{ errors[0] }}</span>
|
|
</ValidationProvider>
|
|
</div>
|
|
|
|
<div class="block-wrapper">
|
|
<label>{{ $t('page_registration.label_confirm_pass') }}:</label>
|
|
<ValidationProvider tag="div" mode="passive" class="input-wrapper" name="Confirm Your Password"
|
|
rules="required" v-slot="{ errors }">
|
|
<input v-model="register.password_confirmation" :placeholder="$t('page_registration.placeholder_confirm_pass')"
|
|
class="focus-border-theme"
|
|
type="password" :class="{'is-error': errors[0]}"/>
|
|
<span class="error-message" v-if="errors[0]">{{ errors[0] }}</span>
|
|
</ValidationProvider>
|
|
</div>
|
|
|
|
<div>
|
|
<i18n path="page_registration.agreement" tag="p" class="legal-agreement">
|
|
<router-link :to="{name: 'DynamicPage', params: {slug: 'terms-of-service'}}" target="_blank" class="text-theme">{{ termsOfService.title }}</router-link>
|
|
<router-link :to="{name: 'DynamicPage', params: {slug: 'privacy-policy'}}" target="_blank" class="text-theme">{{ privacyPolicy.title }}</router-link>
|
|
</i18n>
|
|
<AuthButton icon="chevron-right" :text="$t('page_registration.button_create_account')" :loading="isLoading" :disabled="isLoading"/>
|
|
</div>
|
|
</ValidationObserver>
|
|
|
|
<span class="additional-link">{{ $t('page_registration.have_an_account') }}
|
|
<router-link :to="{name: 'SignIn'}" class="text-theme">
|
|
{{ $t('page_forgotten_password.password_remember_button') }}
|
|
</router-link>
|
|
</span>
|
|
</AuthContent>
|
|
|
|
</AuthContentWrapper>
|
|
</template>
|
|
|
|
<script>
|
|
import AuthContentWrapper from '@/components/Auth/AuthContentWrapper'
|
|
import {ValidationProvider, ValidationObserver} from 'vee-validate/dist/vee-validate.full'
|
|
import AuthContent from '@/components/Auth/AuthContent'
|
|
import AuthButton from '@/components/Auth/AuthButton'
|
|
import {required} from 'vee-validate/dist/rules'
|
|
import {mapGetters} from 'vuex'
|
|
import {events} from "@/bus"
|
|
import axios from 'axios'
|
|
|
|
export default {
|
|
name: 'SignUp',
|
|
components: {
|
|
AuthContentWrapper,
|
|
ValidationProvider,
|
|
ValidationObserver,
|
|
AuthContent,
|
|
AuthButton,
|
|
required,
|
|
},
|
|
computed: {
|
|
...mapGetters(['config']),
|
|
privacyPolicy() {
|
|
return this.config.legal.find(legal => {
|
|
return legal.slug === 'privacy-policy'
|
|
})
|
|
},
|
|
termsOfService() {
|
|
return this.config.legal.find(legal => {
|
|
return legal.slug === 'terms-of-service'
|
|
})
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
isLoading: false,
|
|
register: {
|
|
name: '',
|
|
email: '',
|
|
password: '',
|
|
password_confirmation: '',
|
|
},
|
|
}
|
|
},
|
|
methods: {
|
|
async signUp() {
|
|
|
|
// Validate fields
|
|
const isValid = await this.$refs.sign_up.validate();
|
|
|
|
if (!isValid) return;
|
|
|
|
// Start loading
|
|
this.isLoading = true
|
|
|
|
// Send request to get user token
|
|
axios
|
|
.post('/api/register', this.register)
|
|
.then(() => {
|
|
|
|
// End loading
|
|
this.isLoading = false
|
|
|
|
if(! config.userVerification) {
|
|
// Set login state
|
|
this.$store.commit('SET_AUTHORIZED', true)
|
|
|
|
// Go to files page
|
|
this.$router.push({name: 'Files'})
|
|
} else {
|
|
// Go to sign-in page
|
|
this.$router.push({name: 'SignIn'})
|
|
}
|
|
|
|
})
|
|
.catch(error => {
|
|
|
|
if (error.response.status == 500) {
|
|
|
|
events.$emit('alert:open', {
|
|
emoji: '🤔',
|
|
title: this.$t('popup_signup_error.title'),
|
|
message: this.$t('popup_signup_error.message')
|
|
})
|
|
}
|
|
|
|
if (error.response.status == 422) {
|
|
|
|
if (error.response.data.errors['email']) {
|
|
|
|
this.$refs.sign_up.setErrors({
|
|
'E-Mail': error.response.data.errors['email']
|
|
});
|
|
}
|
|
|
|
if (error.response.data.errors['password']) {
|
|
|
|
this.$refs.sign_up.setErrors({
|
|
'Your New Password': error.response.data.errors['password']
|
|
});
|
|
}
|
|
}
|
|
|
|
// End loading
|
|
this.isLoading = false
|
|
})
|
|
}
|
|
},
|
|
created() {
|
|
this.$scrollTop()
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '@assets/vuefilemanager/_auth-form';
|
|
@import '@assets/vuefilemanager/_auth';
|
|
|
|
.legal-agreement {
|
|
@include font-size(16);
|
|
padding: 55px 0 0;
|
|
max-width: 400px;
|
|
font-weight: 700;
|
|
line-height: 1.6;
|
|
margin: 0 auto;
|
|
}
|
|
</style>
|