WIP: integrate-old-refactors-of-github #1

Draft
hdh20267 wants to merge 140 commits from integrate-old-refactors-of-github into main
Showing only changes of commit c6c3677c54 - Show all commits

View File

@@ -79,7 +79,12 @@ export function Login({ onLoginSuccess }: LoginProps) {
type="password"
autoComplete="current-password"
required
className="appearance-none rounded-none relative block w-full px-3 py-2 border border-gray-300 placeholder-gray-500 text-gray-900 rounded-b-md focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 focus:z-10 sm:text-sm"
className="appearance-none rounded-none relative block w-full px-3 py-2
border border-gray-300 dark:border-gray-700
bg-white dark:bg-gray-800
placeholder-gray-500 dark:placeholder-gray-400
text-gray-900 dark:text-gray-100
rounded-t-md focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 focus:z-10 sm:text-sm"
placeholder="Password"
value={password}
onChange={(e) => setPassword(e.target.value)}