Hello.
I have a form login, but I need to align a logo to the center of this form, so that alignment is responsive.
I know there are some ways, but what is the best way to do this alignment?
Currently this is my code, already with the image in place and such.
<link rel="stylesheet" href="theme.css" type="text/css">
<div class="py-5" >
<div class="container">
<div class="row">
<div class="p-5 col-lg-6">
<img src="~/Content/img/br_negativa.png" style="height:100px" alt="SPARTAN" />
<div class="col-md-10">
@Html.TextBoxFor(m => m.Email, new { @class = "form-control" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(m => m.Password, new { @class = "col-md-2 control-label" })
</div>
</div>
</div>
</div>
</div>