feat: restyle unauthenticated screens #1103

Merged
dpschen merged 29 commits from feature/login-pages into main 2021-12-12 16:40:14 +00:00
1 changed files with 0 additions and 3 deletions
Showing only changes of commit c0b8d08239 - Show all commits

View File

@ -46,14 +46,11 @@
<script setup>
import {ref, reactive} from 'vue'
import {useI18n} from 'vue-i18n'
import PasswordResetModel from '@/models/passwordReset'
import PasswordResetService from '@/services/passwordReset'
import Message from '@/components/misc/message'
const {t} = useI18n()
// Not sure if this instance needs a shalloRef at all
const passwordResetService = reactive(new PasswordResetService())
const passwordReset = ref(new PasswordResetModel())