2) REGISTRARSI : A) TRAMITE TELEGRAM B) TRAMITE EMAIL.

This commit is contained in:
Surya Paolo
2022-12-08 10:09:33 +01:00
parent 944d121943
commit 56411a4539
15 changed files with 285 additions and 155 deletions

View File

@@ -85,6 +85,8 @@ export default defineComponent({
const visubuttBOT = ref(false)
const isalreadyReg = ref(false)
const typePassword = ref('password')
const globalStore = useGlobalStore()
const site = computed(() => globalStore.site)
@@ -275,7 +277,7 @@ export default defineComponent({
if (tools.getAskToVerifyReg()) {
if (!signup.username || !signup.profile.teleg_id) {
tools.copyStringToClipboard($q, signup.aportador_solidario, true)
// tools.copyStringToClipboard($q, signup.aportador_solidario, true)
visubuttBOT.value = true
// window.location.href = tools.getLinkBotTelegram()
}
@@ -309,6 +311,11 @@ export default defineComponent({
}
function showPassword() {
//
typePassword.value = typePassword.value === 'password' ? 'text' : 'password'
}
created()
return {
@@ -331,6 +338,8 @@ export default defineComponent({
visubuttBOT,
isalreadyReg,
site,
showPassword,
typePassword,
}
},
})