Skip to content

Commit

Permalink
Merge branch 'main' of github.com:noverney/randoms
Browse files Browse the repository at this point in the history
  • Loading branch information
Normand Overney committed Oct 29, 2023
2 parents 8f35b4c + f3497f1 commit 642daa5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/pages/login.vue
Expand Up @@ -14,7 +14,7 @@
<div>
<form @submit.prevent="signInWithPassword" class="space-y-6">
<div class="relative">
<UInput v-model="email" id="email" name="email" type="text"
<input v-model="email" id="email" name="email" type="text"
class="peer h-10 w-full border-b-2 border-gray-300 text-gray-900 placeholder-transparent focus:outline-none focus:border-sky-600"
variant="none" placeholder="john@endress.com" />
<label for="email"
Expand All @@ -24,7 +24,7 @@
</div>

<div class="mt-5 relative">
<UInput v-model="password" id="password" name="password" type="password"
<input v-model="password" id="password" name="password" type="password"
class="peer h-10 w-full border-b-2 border-gray-300 text-gray-900 placeholder-transparent focus:outline-none focus:border-sky-600"
variant="none" placeholder="password" />
<label for="password"
Expand Down

0 comments on commit 642daa5

Please sign in to comment.