Skip to content

Commit

Permalink
chore: add label for input
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed Jan 16, 2025
1 parent 0fb5276 commit d7d01b5
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions lib/ash_hq_web/templates/home/home.html.heex
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,19 @@
<h2 class="text-3xl font-bold text-primary-light-200">Get Your Installer</h2>
<div id="installer" />

<input
type="text"
id="app-name"
value={@app_name}
class="text-white bg-transparent mt-4 rounded-lg p-2 animate-glow ring-1 border-0 outline-none ring ring-[#FF5757] mb-3"
oninput="window.appNameChanged(this)"
/>
<div class="flex flex-col justify-center mt-2">
<label for="app-name">Project Name</label>
<div>
<input
type="text"
id="app-name"
value={@app_name}
class="text-white bg-transparent mt-1 w-64 rounded-lg p-2 animate-glow ring-1 border-0 outline-none ring ring-[#FF5757] mb-3 text-center"
placeholder="Project Name"
oninput="window.appNameChanged(this)"
/>
</div>
</div>

<div id="cant-decide" class="mb-2 mt-2">
<button class="text-lg underline cursor-pointer" onclick="window.cantDecide()">
Expand Down

0 comments on commit d7d01b5

Please sign in to comment.