22 lines
459 B
Plaintext
22 lines
459 B
Plaintext
|
|
package popup
|
|
|
|
import "projectreshoot/internal/view/component/form"
|
|
|
|
templ ConfirmPasswordModal() {
|
|
<div
|
|
class="z-50 absolute bg-overlay0/55 top-0 left-0 right-0 bottom-0"
|
|
x-show="showConfirmPasswordModal"
|
|
x-cloak
|
|
>
|
|
<div
|
|
class="p-5 mt-25 w-fit max-w-100 text-center rounded-lg bg-mantle mx-auto"
|
|
>
|
|
<div class="text-xl">
|
|
To complete this action you need to confirm your password
|
|
</div>
|
|
@form.ConfirmPassword("")
|
|
</div>
|
|
</div>
|
|
}
|