When login with username, password these values saved into browser cache. How to stop this.
            Asked
            
        
        
            Active
            
        
            Viewed 56 times
        
    -12
            
            
        - 
                    clear browser cache.... !? – Marc Giroux Sep 06 '16 at 17:59
- 
                    @MarcGiroux I think the correct answer is the [autocomplete attribute](http://www.w3schools.com/tags/att_input_autocomplete.asp) – MonkeyZeus Sep 06 '16 at 18:00
- 
                    Didnt the browser normaly ask for that? – JOUM Sep 06 '16 at 18:00
- 
                    @MonkeyZeus well you are probably right. Still, OP is very unclear. – Marc Giroux Sep 06 '16 at 18:00
- 
                    @MarcGiroux Yes, the English might not be up to par but reading it twice usually reveals the true question. – MonkeyZeus Sep 06 '16 at 18:04
- 
                    Possible duplicate of [Is there a W3C valid way to disable autocomplete in a HTML form?](http://stackoverflow.com/questions/582244/is-there-a-w3c-valid-way-to-disable-autocomplete-in-a-html-form) – Xander Luciano Sep 06 '16 at 18:36
1 Answers
1
            
            
        You can turn off the auto complete feature, guess that is what you mean?
<input type="text" name="username" autocomplete="off">
 
    
    
        MarcHoH
        
- 340
- 1
- 6
 
    