You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/06/28 11:18:41 UTC

[GitHub] [airflow] abhishekbhakat commented on issue #24700: Password autocompletion set off on login page

abhishekbhakat commented on issue #24700:
URL: https://github.com/apache/airflow/issues/24700#issuecomment-1168589972

   Can we try adding a parameter to [Login.tsx](https://github.com/apache/airflow/blob/main/airflow/ui/src/views/Login.tsx) as:
   
   ```
             <FormControl mt={4}>
               <FormLabel htmlFor="password">Password</FormLabel>
               <InputGroup>
                 <InputLeftElement>
                   <Icon as={FiLock} color="gray.300" />
                 </InputLeftElement>
                 <Input
                   type="password"
                   name="password"
                   placeholder="Password"
                   data-testid="password"
                   value={password}
                   onChange={(e) => setPassword(e.target.value)}
                   isRequired
                 />
               </InputGroup>
             </FormControl>
   ```
   
   Guess the parameter should be `autoComplete = 'off'`?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org