0351d front end linting (#377)

* feat: disable custom script for  trial users

* after lint fix

* frontend linting

---------

Co-authored-by: Julien Nahum <julien@nahum.net>
This commit is contained in:
Favour Olayinka
2024-04-15 18:39:03 +01:00
committed by GitHub
parent 8d35fc8b1a
commit bcd45ce8a6
228 changed files with 17036 additions and 8744 deletions

View File

@@ -1,34 +1,57 @@
<template>
<div v-if="hasValidLicense" class="p-6 bg-white border shadow-md rounded-md">
<img src="/img/appsumo/as-taco-white-bg.png" class="max-w-[60px] mx-auto" alt="AppSumo"/>
<div
v-if="hasValidLicense"
class="p-6 bg-white border shadow-md rounded-md"
>
<img
src="/img/appsumo/as-taco-white-bg.png"
class="max-w-[60px] mx-auto"
alt="AppSumo"
>
<img src="/img/appsumo/as-Select-dark.png" class="max-w-[300px] mx-auto" alt="AppSumo"/>
<img
src="/img/appsumo/as-Select-dark.png"
class="max-w-[300px] mx-auto"
alt="AppSumo"
>
<p class="mt-6">
<span class="text-green-500">We found your AppSumo Lifetime deal license!</span> Just complete the registration form to finalize the activation of
your license.
<span class="text-green-500">We found your AppSumo Lifetime deal license!</span>
Just complete the registration form to finalize the activation of your
license.
</p>
</div>
<div v-else-if="hasLicenseError" class="p-6 bg-white border border-red-500 shadow-md rounded-md">
<img src="/img/appsumo/as-taco-white-bg.png" class="max-w-[60px] mx-auto" alt="AppSumo"/>
<div
v-else-if="hasLicenseError"
class="p-6 bg-white border border-red-500 shadow-md rounded-md"
>
<img
src="/img/appsumo/as-taco-white-bg.png"
class="max-w-[60px] mx-auto"
alt="AppSumo"
>
<img src="/img/appsumo/as-Select-dark.png" class="max-w-[300px] mx-auto" alt="AppSumo"/>
<img
src="/img/appsumo/as-Select-dark.png"
class="max-w-[300px] mx-auto"
alt="AppSumo"
>
<p class="mt-6">
<span class="text-red-600">Invalid AppSumo license</span>. The license was probably already attached to an OpnForm account. Please contact support.
<span class="text-red-600">Invalid AppSumo license</span>. The license was
probably already attached to an OpnForm account. Please contact support.
</p>
</div>
</template>
<script>
export default {
name: "AppSumoRegister",
name: 'AppSumoRegister',
data () {
data() {
return {
hasValidLicense: false,
hasLicenseError: false
hasLicenseError: false,
}
},
@@ -36,19 +59,23 @@ export default {
watch: {},
mounted () {
if (this.$route.query.appsumo_license !== undefined && this.$route.query.appsumo_license) {
mounted() {
if (
this.$route.query.appsumo_license !== undefined &&
this.$route.query.appsumo_license
) {
this.hasValidLicense = true
} else if (this.$route.query.appsumo_error !== undefined && this.$route.query.appsumo_error) {
} else if (
this.$route.query.appsumo_error !== undefined &&
this.$route.query.appsumo_error
) {
this.hasLicenseError = true
}
},
created () {
},
destroyed () {
},
created() {},
unmounted() {},
methods: {}
methods: {},
}
</script>