+
diff --git a/src/views/login/signup_sip/signup_sip.scss b/src/views/login/signup_sip/signup_sip.scss
new file mode 100755
index 0000000..6a3d233
--- /dev/null
+++ b/src/views/login/signup_sip/signup_sip.scss
@@ -0,0 +1,12 @@
+.signup {
+ width: 100%;
+ margin: 0 auto;
+ max-width: 450px;
+}
+
+
+.wrapper {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
diff --git a/src/views/login/signup_sip/signup_sip.ts b/src/views/login/signup_sip/signup_sip.ts
new file mode 100755
index 0000000..fa76740
--- /dev/null
+++ b/src/views/login/signup_sip/signup_sip.ts
@@ -0,0 +1,27 @@
+import Vue from 'vue'
+import { Component, Prop, Watch } from 'vue-property-decorator'
+import { UserStore } from '@store'
+import { tools } from '../../../store/Modules/tools'
+import { toolsext } from '@src/store/Modules/toolsext'
+import { CSignUpSIP } from '../../../components/CSignUpSIP'
+
+@Component({
+ components: { CSignUpSIP }
+})
+
+export default class SignupComplete extends Vue {
+ public $t: any
+ public adult: boolean = false
+
+ @Watch('$route.params.invited')
+ public changeadult() {
+ console.log('$route.params.invited')
+ this.adult = !!this.$route.params.invited
+ }
+
+ public created() {
+ if (!tools.getCookie(tools.APORTADOR_SOLIDARIO, ''))
+ tools.setCookie(tools.APORTADOR_SOLIDARIO, this.$route.params.invited)
+ }
+
+}
diff --git a/src/views/login/signup_sip/signup_sip.vue b/src/views/login/signup_sip/signup_sip.vue
new file mode 100755
index 0000000..e42e8f8
--- /dev/null
+++ b/src/views/login/signup_sip/signup_sip.vue
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/user/profile/profile.ts b/src/views/user/profile/profile.ts
index 0afdc78..755f80f 100755
--- a/src/views/user/profile/profile.ts
+++ b/src/views/user/profile/profile.ts
@@ -28,7 +28,7 @@ export default class Profile extends MixinBase {
public eliminaAccount() {
this.$q.dialog({
- message: this.$t('reg.cancellami'),
+ message: this.$t('reg.cancellami', {sitename: this.$t('ws.sitename')}),
cancel: {
label: this.$t('dialog.cancel')
},
@@ -39,7 +39,7 @@ export default class Profile extends MixinBase {
title: this.$t('pages.profile')
}).onOk(async () => {
this.$q.dialog({
- message: this.$t('reg.cancellami_2'),
+ message: this.$t('reg.cancellami_2', {sitename: this.$t('ws.sitename')}),
cancel: {
label: this.$t('dialog.cancel')
},
diff --git a/src/views/user/profile/profile.vue b/src/views/user/profile/profile.vue
index c934989..df504b7 100755
--- a/src/views/user/profile/profile.vue
+++ b/src/views/user/profile/profile.vue
@@ -64,7 +64,19 @@
mysubkey="teleg_id"
:type="tools.FieldType.number">
-->
+
+
+
+
+
+
+