mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-03 22:13:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			96 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <form id="loginForm" @submit.prevent="validateBeforeSubmit">
 | 
						|
    <div class="mb-4">
 | 
						|
      <sw-input
 | 
						|
        :invalid="$v.formData.email.$error"
 | 
						|
        v-model.lazy="formData.email"
 | 
						|
        :disabled="isSent"
 | 
						|
        :placeholder="$t('login.enter_email')"
 | 
						|
        focus
 | 
						|
        name="email"
 | 
						|
        @blur="$v.formData.email.$touch()"
 | 
						|
      />
 | 
						|
      <div v-if="$v.formData.email.$error">
 | 
						|
        <span v-if="!$v.formData.email.required" class="text-sm text-danger">
 | 
						|
          {{ $t('validation.required') }}
 | 
						|
        </span>
 | 
						|
        <span v-if="!$v.formData.email.email" class="text-sm text-danger">
 | 
						|
          {{ $t('validation.email_incorrect') }}
 | 
						|
        </span>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
    <sw-button
 | 
						|
      :loading="isLoading"
 | 
						|
      :disabled="isLoading"
 | 
						|
      type="submit"
 | 
						|
      variant="primary"
 | 
						|
    >
 | 
						|
      <div v-if="!isSent">
 | 
						|
        {{ $t('validation.send_reset_link') }}
 | 
						|
      </div>
 | 
						|
      <div v-else>
 | 
						|
        {{ $t('validation.not_yet') }}
 | 
						|
      </div>
 | 
						|
    </sw-button>
 | 
						|
 | 
						|
    <div class="mt-4 mb-4 text-sm">
 | 
						|
      <router-link
 | 
						|
        to="/login"
 | 
						|
        class="text-sm text-primary-400 hover:text-gray-700"
 | 
						|
      >
 | 
						|
        {{ $t('general.back_to_login') }}
 | 
						|
      </router-link>
 | 
						|
    </div>
 | 
						|
  </form>
 | 
						|
</template>
 | 
						|
 | 
						|
<script type="text/babel">
 | 
						|
import { async } from 'q'
 | 
						|
import { mapActions } from 'vuex'
 | 
						|
const { required, email } = require('vuelidate/lib/validators')
 | 
						|
 | 
						|
export default {
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      formData: {
 | 
						|
        email: '',
 | 
						|
      },
 | 
						|
      isSent: false,
 | 
						|
      isLoading: false,
 | 
						|
    }
 | 
						|
  },
 | 
						|
  validations: {
 | 
						|
    formData: {
 | 
						|
      email: {
 | 
						|
        email,
 | 
						|
        required,
 | 
						|
      },
 | 
						|
    },
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    ...mapActions('auth'),
 | 
						|
    async validateBeforeSubmit(e) {
 | 
						|
      this.$v.formData.$touch()
 | 
						|
      if (!this.$v.formData.$invalid) {
 | 
						|
        try {
 | 
						|
          this.isLoading = true
 | 
						|
          let res = await axios.post(
 | 
						|
            '/api/v1/auth/password/email',
 | 
						|
            this.formData
 | 
						|
          )
 | 
						|
 | 
						|
          if (res.data) {
 | 
						|
            toastr['success']('Mail sent successfuly!', 'Success')
 | 
						|
          }
 | 
						|
 | 
						|
          this.isSent = true
 | 
						|
          this.isLoading = false
 | 
						|
        } catch (err) {
 | 
						|
          this.isLoading = false
 | 
						|
        }
 | 
						|
      }
 | 
						|
    },
 | 
						|
  },
 | 
						|
}
 | 
						|
</script>
 |