Skip to content

Commit

Permalink
fix: input and label id
Browse files Browse the repository at this point in the history
  • Loading branch information
adhimrahman committed May 13, 2024
1 parent 154e7f3 commit f95c94a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions views/layouts/signinForm.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@

<div class="mb-4">
<label for="password" class="block text-sm font-medium text-gray-700 dark:text-neutral-300 mb-2">Password</label>
<input type="password" id="password" class="shadow-sm rounded-md w-full px-3 py-2 border-2 border-neutral-300 focus:outline-none focus:ring-spotitip focus:border-spotitip mb-2" placeholder="Enter your password" name="password">
<a href="#" class="text-xs text-neutral-500 hover:text-spotitip focus:outline-none">Forgot Password?</a>
<input type="password" id="password" class="shadow-sm rounded-md w-full px-3 py-2 border-2 border-neutral-800 focus:outline-none focus:ring-spotitip focus:border-spotitip mb-2" placeholder="Enter your password" name="password">
<a href="#" id="forget-account-link" class="text-xs text-neutral-500 hover:text-spotitip focus:outline-none">Forgot Password?</a>
</div>

<div class="flex items-center justify-between mb-5">
<div class="flex items-center">
<input type="checkbox" id="remember" class="h-4 w-4 rounded border-neutral-300 text-spotitip focus:ring-spotitip focus:outline-none accent-spotitip" checked>
<label for="remember" class="ml-2 block text-sm text-neutral-700 dark:text-neutral-300">Remember me</label>
<input type="checkbox" class="h-4 w-4 rounded border-neutral-300 text-spotitip focus:ring-spotitip focus:outline-none accent-spotitip" checked>
<label for="remember" id="remember" class="ml-2 block text-sm text-neutral-700 dark:text-neutral-300">Remember me</label>
</div>
<a href="/signup" id="create-account-link" class="text-xs text-neutral-500 hover:text-spotitip">Create Account</a>
</div>
Expand Down

0 comments on commit f95c94a

Please sign in to comment.