mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
* - fixed nowrap for button - restyled bullets for slider - relocated back links - removed icons * - removed icon from RegistrationSlideEmail too * - added media query for padding * - fixed missing constants * - fixed padding in no-header layout * - fixed sticky footer in registration flow * - removed icons from inputs * - set fixed height for back link * - fixed invite code placeholder * - added auto submit to invite and email code forms - fixed layout password inputs - added layout to checkboxes (create) - removed unnecessary texts - moved backLink for password-reset - tidied up create layout * fixed margin * - fixed nonceLength * lint fixes * corrected path --------- Co-authored-by: Sebastian Stein <sebastian@codepassion.de> Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>
19 lines
362 B
Vue
19 lines
362 B
Vue
<template>
|
|
<request @handleSubmitted="handlePasswordResetRequested"></request>
|
|
</template>
|
|
|
|
<script>
|
|
import Request from '~/components/PasswordReset/Request'
|
|
|
|
export default {
|
|
components: {
|
|
Request,
|
|
},
|
|
methods: {
|
|
handlePasswordResetRequested({ email }) {
|
|
this.$router.push({ path: 'enter-nonce', query: { email } })
|
|
},
|
|
},
|
|
}
|
|
</script>
|