Ive been needing an icon representing this exactly for some time now, and found one over on the Noun Project website, but would be awesome if something similar could be included into font-awesome.
could also be used for change password.
The noun project one can be found here
Couldn't you just combine fa-undo
with fa-lock
?
<span class="fa-passwd-reset fa-stack">
<i class="fa fa-undo fa-stack-2x"></i>
<i class="fa fa-lock fa-stack-1x"></i>
</span> <label>Reset Password:</label>
<input type="password" name="new-passwd" />
.fa-passwd-reset > .fa-lock {
font-size: 0.85rem;
}
+1
+1
+1
+1
+1 please add it :) stack is not a solution...
something like https://pngtree.com/free-icon/reset-password_1201020
Most helpful comment
Couldn't you just combine
fa-undo
withfa-lock
?