2023-10-24 23:23:57 -04:00
|
|
|
<.flash_group flash={@flash} />
|
2023-10-25 23:19:22 -04:00
|
|
|
<dialog open class="modal bg-base-300">
|
2023-10-25 03:58:10 -04:00
|
|
|
<article class="modal-box">
|
|
|
|
|
<.form
|
|
|
|
|
for={@form}
|
|
|
|
|
:let={f}
|
|
|
|
|
method="post"
|
|
|
|
|
action="/token"
|
|
|
|
|
>
|
|
|
|
|
<label class="label">
|
2023-10-25 23:19:22 -04:00
|
|
|
<span class="label-text">Enter your railway token</span>
|
2023-10-27 01:48:53 -04:00
|
|
|
<a href="https://railway.app/account/tokens" target="_blank" rel="noopener noreferrer" class="label-text-alt underline">Get it here</a>
|
2023-10-25 03:58:10 -04:00
|
|
|
</label>
|
|
|
|
|
|
|
|
|
|
<input class="input input-bordered" name="railway_token" />
|
|
|
|
|
<div class="text-center mt-6">
|
2023-10-25 23:19:22 -04:00
|
|
|
<button class="btn">Begin</button>
|
2023-10-24 23:23:57 -04:00
|
|
|
</div>
|
2023-10-25 03:58:10 -04:00
|
|
|
</.form>
|
|
|
|
|
</article>
|
|
|
|
|
</dialog>
|