Skip to content

Commit

Permalink
fix(fe2): pw being set as query param when login/register form submit…
Browse files Browse the repository at this point in the history
…ted too early (#2289)
  • Loading branch information
fabis94 authored May 28, 2024
1 parent 60134bc commit 961577e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<form @submit="onSubmit">
<form method="post" @submit="onSubmit">
<div class="flex flex-col space-y-2">
<FormTextInput
type="email"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- eslint-disable vue/no-v-html -->
<template>
<form @submit="onSubmit">
<form method="post" @submit="onSubmit">
<div class="flex flex-col space-y-2">
<FormTextInput
type="text"
Expand Down

0 comments on commit 961577e

Please sign in to comment.