Hi, I'm trying to integrate a PHP function into an HTML input, because if I remove the HTML input and leave only the PHP function, by not taking the styles the field is reduced in width by half, as you can see in the image. *
PHP + HTML
<div class="form-group">
<label class="sr-only" for="form-username">Username</label>
<?php echo form_input($identity); ?>
<!-- <input type="text" name="form-username" placeholder="Usuario..." class="form-username form-control" id="form-username">-->
</div>