Mobile app version of vmapp.org
Login or Join
Vandalay111

: How does Lastpass recognize actual login? We are currently working on simple school project using Codeigniter where we need login page. It would be very useful if Lastpass could recognise and

@Vandalay111

Posted in: #Authentication

We are currently working on simple school project using Codeigniter where we need login page. It would be very useful if Lastpass could recognise and save logins. We have several accounts with different roles and manual insert of login is pretty slow. So I was wondering what needs to be done and where in files (view, controller?) for Lastpass to work as it does on every website.

For example this is our login form:

<?php echo form_open('login'); ?>
<input type="text" id="username" name="username"/>
<input type="text" id="password" name="password"/>
<input type="submit" value="Login"/>
</form>


Thanks for help.

(could not create new tag "Lastpass" due to low reputation)

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Vandalay111

1 Comments

Sorted by latest first Latest Oldest Best

 

@Cofer257

change

<input type="text" id="password" name="password"/>


to

<input type="password" id="password" name="password"/>

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme