I have an HTML
as follows :
<div class="row">
<div class="col-lg-4">
<label for="email">E-Mail ID:</label>
</div>
<div class="col-lg-8 input-group" style="width:50%">
<input type="text" id="userEmail" class="form-control" name="email" required />
<span class="input-group-addon">@gmail.com</span>
<hr/>
</div>
</div>
I would like to add static text inside the box on the right hand side.
Eg (@gmail.com, the way it is on the google sign up form check image). Help much appreciated!