mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
* fix strings on login and register pages * back to older styles for placeholder * scope->scoped * remove old css
41 lines
907 B
Vue
41 lines
907 B
Vue
<template lang="pug">
|
|
b-modal#testing(:title="$t('guildReminderTitle')", size='lg', :hide-footer="true")
|
|
.modal-body.text-center
|
|
br
|
|
.scene_guilds
|
|
br
|
|
h4 {{ $t('guildReminderText1') }}
|
|
.modal-footer
|
|
.container-fluid
|
|
.row
|
|
.col-6.text-center
|
|
button.btn.btn-secondary(@click='close()') {{ $t('guildReminderDismiss') }}
|
|
.col-6.text-center(@click='close()')
|
|
.btn.btn-primary(@click='takeMethere()') {{ $t('guildReminderCTA') }}
|
|
</template>
|
|
|
|
<style scoped>
|
|
.scene_guilds {
|
|
margin: 0 auto;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import bModal from 'bootstrap-vue/lib/components/modal';
|
|
|
|
export default {
|
|
components: {
|
|
bModal,
|
|
},
|
|
methods: {
|
|
close () {
|
|
this.$root.$emit('hide::modal', 'testing');
|
|
},
|
|
takeMethere () {
|
|
this.$router.push('/groups/discovery');
|
|
this.close();
|
|
},
|
|
},
|
|
};
|
|
</script>
|