Skip to content

Commit

Permalink
fix link in register
Browse files Browse the repository at this point in the history
  • Loading branch information
gheorghelupu17 committed Mar 20, 2024
1 parent f8d7b6b commit a1d3254
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
3 changes: 1 addition & 2 deletions resources/js/Pages/Auth/Registration/Step2.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@
<Checkbox name="terms" v-model:checked="form.terms" required />
<div class="flex items-center space-x-1 text-sm">
<span class="text-gray-700">{{ $t('i_agree') }}</span>
<Link :href="route('terms')" target="_blank" class="text-primary-500"> {{ $t('terms_link') }} </Link
>.
<a :href="route('terms')" target="_blank" class="text-primary-500"> {{ $t('terms_link') }} </a>.
</div>
</label>

Expand Down
16 changes: 8 additions & 8 deletions resources/js/Pages/Auth/Registration/Step5.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
v-model="form.ngo.why_volunteer"
:error="form.errors['ngo.why_volunteer']"
>
<p class="text-xs font-normal text-gray-500">{{ $t('why_volunteer_info') }}</p>
</Textarea>
<p class="text-xs font-normal text-gray-500" v-html="$t('why_volunteer_info')" />

<div v-if="'organization' == form.type" class="flex items-center justify-between mt-6 gap-x-4">
<SecondaryButton @click="$emit('prev', $event.target)">
Expand All @@ -37,12 +37,12 @@
</template>

<script setup>
import Textarea from '@/Components/form/Textarea.vue';
import Checkbox from '@/Components/form/Checkbox.vue';
import PrimaryButton from '@/Components/buttons/PrimaryButton.vue';
import SecondaryButton from '@/Components/buttons/SecondaryButton.vue';
import Textarea from '@/Components/form/Textarea.vue';
import Checkbox from '@/Components/form/Checkbox.vue';
import PrimaryButton from '@/Components/buttons/PrimaryButton.vue';
import SecondaryButton from '@/Components/buttons/SecondaryButton.vue';
const props = defineProps({
form: Object,
});
const props = defineProps({
form: Object,
});
</script>

0 comments on commit a1d3254

Please sign in to comment.