I am trying to put a fa fa icon inside the input text box in my Angular 4 project. I tried other Stack Overflow answers, but they did not work for me. The coding I used is as follows:
<div class="form-group has-feedback">
<input class="form-control " name="UserName" type="text" placeholder="username"><span class="fa fa-user form-control-feedback"></span>
</div>
<div class="form-group has-feedback">
<input class="form-control " name="PassWord" type="password" placeholder="password"><span class="fa fa-lock form-control-feedback"></span>
</div>
The output comes like this:
But I want icons within text box:
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet"/>
<div class="form-group has-feedback">
<input style="position:relative;" class="form-control " name="UserName" type="text" placeholder="username" >
<span style="position:absolute; right:8px;top:8px;" class="fa fa-user "></span>
</div>
<div class="form-group has-feedback">
<input class="form-control " style="position:relative;" name="PassWord" type="password" placeholder="password"><span style="position:absolute; right:8px;top:60px;" class="fa fa-lock form-control-feedback"></span>
</div>
input[type=text]{
width:100%;
border:2px solid #aaa;
border-radius:4px;
margin:8px 0;
outline:none;
padding:8px;
box-sizing:border-box;
transition:.3s;
}
input[type=text]:focus{
border-color:dodgerBlue;
box-shadow:0 0 8px 0 dodgerBlue;
}
.inputWithIcon input[type=text]{
padding-left:40px;
}
.inputWithIcon{
position:relative;
}
.inputWithIcon i{
position:absolute;
left:0;
top:8px;
padding:9px 8px;
color:#aaa;
transition:.3s;
}
.inputWithIcon input[type=text]:focus + i{
color:dodgerBlue;
}
.inputWithIcon.inputIconBg i{
background-color:#aaa;
color:#fff;
padding:9px 4px;
border-radius:4px 0 0 4px;
}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<div class="inputWithIcon">
<input type="text">
<i class="fa fa-user fa-lg fa-fw" aria-hidden="true"></i></div>
<div class="inputWithIcon">
<input type="text">
<i class="fa fa-lock fa-lg fa-fw" aria-hidden="true"></i></div>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With