Hi
The login module current using an override from the template that has these icons.
Open template folder/html/hellome/default.php
find below code
<li><a href="<?php echo JRoute::_('index.php?option=' . COM_USER_NAME . '&view=reset'); ?>"><span class="fa fa-key" title="<?php echo JText::_('MOD_HELLOME_FORGOT_YOUR_PASSWORD'); ?>"></span></a></li>
<li><a href="<?php echo JRoute::_('index.php?option=' . COM_USER_NAME . '&view=remind'); ?>"><span class="fa fa-user" title="<?php echo JText::_('MOD_HELLOME_FORGOT_YOUR_USERNAME'); ?>"></span></a></li>
<li><a href="<?php echo CRoute::_('index.php?option=com_community&view=register&task=activation'); ?>" class="login-forgot-username"><span class="fa fa-code" title="<?php echo JText::_('MOD_HELLOME_RESEND_ACTIVATION_CODE'); ?>"></span></a></li>
You can replace the icon span class and add a static name here.
Hope it helps.
Regards