How could I do to align the labels of a form with their respective inputs? I would like the label and the input to be on the same line. Something like this:
At the moment I have this:
<div class="form-group">
<label>Nombre *</label>
<input type="text" placeholder="Introduce tu nombre..." required class="form-control" name="nombre">
</div>
<div class="form-group">
<labe>Apellidos *</label>
<input type="text" placeholder="Introduce tus apellidos..." required class="form-control" name="apellidos">
</div>
<div class="form-group">
<label>Email *</label>
<input type="mail" placeholder="Introduce tu email..." required class="form-control" name="email">
</div>
<div class="form-group">
<label>Dirección *</label>
<input type="text" placeholder="Introduce tu dirección..." required class="form-control" name="direccion">
</div>