ezcontainer_example/lib/ezcontainer_railway_web/controllers/page_html/home.html.heex

22 lines
541 B
Text
Raw Normal View History

2023-10-24 23:23:57 -04:00
<.flash_group flash={@flash} />
2023-10-25 03:58:10 -04:00
<dialog open class="modal">
<article class="modal-box">
<.form
for={@form}
:let={f}
method="post"
action="/token"
>
<label class="label">
<span class="label-text">What is your name?</span>
<span class="label-text-alt">Top Right label</span>
</label>
<input class="input input-bordered" name="railway_token" />
<div class="text-center mt-6">
<button class="btn">Test</button>
2023-10-24 23:23:57 -04:00
</div>
2023-10-25 03:58:10 -04:00
</.form>
</article>
</dialog>