diff --git a/src/routes/login/+page.svelte b/src/routes/login/+page.svelte index 6720952..69f7096 100644 --- a/src/routes/login/+page.svelte +++ b/src/routes/login/+page.svelte @@ -53,7 +53,7 @@ type="username" id="username" name="username" - class="py-3 px-4 block w-full border-gray-200 rounded-md text-sm focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400" + class="py-3 px-4 block w-full border-gray-200 rounded-md text-sm focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 border" required aria-describedby="username-error" /> @@ -72,7 +72,7 @@ type="password" id="password" name="password" - class="py-3 px-4 block w-full border-gray-200 rounded-md text-sm focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400" + class="py-3 px-4 block w-full border-gray-200 rounded-md text-sm focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 border" required aria-describedby="password-error" /> diff --git a/src/routes/registration/+page.svelte b/src/routes/registration/+page.svelte index a250edd..cfe957e 100644 --- a/src/routes/registration/+page.svelte +++ b/src/routes/registration/+page.svelte @@ -76,7 +76,7 @@ type="text" id="firstname" name="firstname" - class="py-3 px-4 block w-full border-gray-200 rounded-md text-sm focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400" + class="py-3 px-4 block w-full border-gray-200 rounded-md text-sm focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 border" required bind:value={firstname} aria-describedby="firstname-error" @@ -117,7 +117,7 @@ type="lastname" id="lastname" name="lastname" - class="py-3 px-4 block w-full border-gray-200 rounded-md text-sm focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400" + class="py-3 px-4 block w-full border-gray-200 rounded-md text-sm focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 border" required aria-describedby="lastname-error" bind:value={lastname}