add alert boxes for registrations opening soon

apl/regionalrumble
Ayush Mukherjee 1 year ago
parent ac5c0715bb
commit bc341ed803

@ -26,7 +26,7 @@
</div> </div>
</div> </div>
<div class="register"> <div class="register">
<a class="btn" href="https://www.youtube.com/watch?v=GtL1huin9EE">Signups soon</a> <a class="btn" href="https://www.youtube.com/watch?v=GtL1huin9EE" @click.prevent="signup">Signups soon</a>
</div> </div>
</section> </section>
<section class="trailer"> <section class="trailer">
@ -44,6 +44,9 @@ export default {
methods: { methods: {
goback() { goback() {
this.$router.push('/regionalrumble'); this.$router.push('/regionalrumble');
},
signup() {
alert('Registrations open soon!');
} }
}, },
} }

@ -27,7 +27,7 @@
</div> </div>
</div> </div>
<div class="register"> <div class="register">
<a class="btn" href="https://www.youtube.com/watch?v=GtL1huin9EE">Signups soon</a> <a class="btn" href="https://www.youtube.com/watch?v=GtL1huin9EE" @click.prevent="signup">Signups soon</a>
</div> </div>
</section> </section>
<section class="trailer"> <section class="trailer">
@ -45,6 +45,9 @@ export default {
methods: { methods: {
goback() { goback() {
this.$router.push('/regionalrumble'); this.$router.push('/regionalrumble');
},
signup() {
alert('Registrations open soon!');
} }
}, },
} }

@ -27,7 +27,7 @@
</div> </div>
</div> </div>
<div class="register"> <div class="register">
<a class="btn" href="https://www.youtube.com/watch?v=GtL1huin9EE">Signups soon</a> <a class="btn" href="https://www.youtube.com/watch?v=GtL1huin9EE" @click.prevent="signup">Signups soon</a>
</div> </div>
</section> </section>
<section class="trailer"> <section class="trailer">
@ -45,6 +45,9 @@ export default {
methods: { methods: {
goback() { goback() {
this.$router.push('/regionalrumble'); this.$router.push('/regionalrumble');
},
signup() {
alert('Registrations open soon!');
} }
}, },
} }

Loading…
Cancel
Save