Personal I need to record 2 fields of the login screen of my program, I want to give facility to the friend that has logged in, he does not need to enter things like company code, and email. I tried to use the autocomplete but it did not have any functionality. Is there any language (HTML, CSS, JAVASCRIPT) that makes this easy or do I have to create a method?
I thought of saving in a cookie, where if it has it saved if it does not save?
I tried setting the autocomplete with jquery like this:
<script>
jQuery('#codigo').attr('autocomplete','on');
jQuery('#email').attr('autocomplete','on');
</script>