-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
パスワードリセットまわりの作成 #91
base: main
Are you sure you want to change the base?
パスワードリセットまわりの作成 #91
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ありがとうございます!実装とても良さそうです。
いくつかhtml周りについてコメントしてあるのでご確認ください:pray:
入力されたメールアドレスがお使いのアカウントに登録されていない場合、メールは送信されません。 | ||
</p> | ||
</div> | ||
<div class="flex items-center justify-center gap-3 self-stretch"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ここ意味のまとまりをわかりやすくするためにform
要素とか使っても良さそう
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「この画面を閉じる」ボタンは単なる画面遷移なので、まとめてform要素は適さないかなと思いました
入力欄とかがなくてもform要素にするものなんでしょうか?(よくわかっていないので教えてほしいです🙏)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
確かにサーバー側になんらかの情報を送るわけではないのでここでは使わなくて良さそうです,ごめんなさい:pray_shake:
src/views/ResetPasswordFormView.vue
Outdated
<div class="flex flex-col items-start self-stretch p-2.5"> | ||
<div class="flex items-center justify-center gap-6 self-stretch"> | ||
<div class="flex w-50 items-center justify-end gap-2.5"> | ||
<span class="fontstyle-ui-body-strong text-[#3A3A3A]">パスワード</span> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
label
要素とfor-idを使ってPasswordTextBoxと対応づけてください!
確認のところも同じようにお願いします。
src/views/ResetPasswordFormView.vue
Outdated
/> | ||
</div> | ||
<div class="flex items-center justify-center gap-6 self-stretch pb-5"> | ||
<div class="h-4 w-50"></div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
変なプレースホルダーが入っているのが気になります。
おそらくパスワードについての注意書きをPasswordTextBox
とひとまとまりにすればflex + flex-colでいい感じに整列できると思うので,そうしてみてください。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ひとまとまりにしましたが、flexだときれいに揃わなさそうな感じです
grid使えば、ラベル-テキストボックスの高さとテキストボックス-注意書きの横が同時にそろうかなと思うのでやってみます
grid使ったこと無くて今から調べる感じになりますが…
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
実装ありがとうございます!全体的にとても良いです。
余分なプレースホルダーの削除についてはおっしゃる通りflex+flex-colでは実現するのが大変かもしれないです(ラベルの方にpaddingを入れればまあいける?かもだけどそもそもそれは綺麗ではない)
いっていることが二転三転して申し訳ないですが,gridで実装していただけるとありがたいです!
入力されたメールアドレスがお使いのアカウントに登録されていない場合、メールは送信されません。 | ||
</p> | ||
</div> | ||
<div class="flex items-center justify-center gap-3 self-stretch"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
確かにサーバー側になんらかの情報を送るわけではないのでここでは使わなくて良さそうです,ごめんなさい:pray_shake:
close #63
遅れて申し訳ないです…!