In my login and registration forms I have placed the fields and the labels but when running the program they are not shown unless I highlight them.
login page as an example
<div class="form-floating">
<input asp-for="Input.Email" class="form-control" placeholder="Email" autocomplete="username" aria-required="true"/>
<label asp-for="Input.Email" class="form-label">Email</label>
<span asp-validation-for="Input.Email" class="text-danger fs-6"></span>
</div>
<div class="form-floating">
<input asp-for="Input.Password" class="form-control" autocomplete="current-password" aria-required="true" />
<label asp-for="Input.Password" class="form-label">Password</label>
<span asp-validation-for="Input.Password" class="text-danger fs-6"></span>
</div>
and the output are white boxes no labels