mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-15 05:37:22 +01:00
* Fixed login/reg styles and on submit * Fixed duedate display in yesterdailiy modal * Prevented tutorial from showing after logged in has past created * Hide premium shirts from creating * Fixed level up notification * Updated categoires * Updated justin message * Fixed notification changes * Fixed guild nav in join guild modal * Added buygems modal * Removed avatar page click * Fixed group plan nav * Fixed death issue * Fixed party header styles
39 lines
924 B
Vue
39 lines
924 B
Vue
<template lang="pug">
|
|
b-modal#testing(:title="$t('guildReminderTitle')", size='lg', :hide-footer="true")
|
|
.modal-content
|
|
.modal-body.text-center
|
|
h3 {{ $t('guildReminderTitle') }}
|
|
br
|
|
.scene_guilds.center-block
|
|
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()')
|
|
router-link.btn.btn-primary(:to="{ name: 'guildsDiscovery'}") {{ $t('guildReminderCTA') }}
|
|
</template>
|
|
|
|
<style scope>
|
|
.dont-despair, .death-penalty {
|
|
margin-top: 1.5em;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import bModal from 'bootstrap-vue/lib/components/modal';
|
|
|
|
export default {
|
|
components: {
|
|
bModal,
|
|
},
|
|
methods: {
|
|
close () {
|
|
this.$root.$emit('hide::modal', 'testing');
|
|
},
|
|
},
|
|
};
|
|
</script>
|