Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix overlapping label and placeholder on templates
  • Loading branch information
javiercn authored and github-actions committed Sep 10, 2024
commit fc82c1d64fc92eac99441fe67ceaaa1d223b31af
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<h1>Log in</h1>
<div class="row">
<div class="col-md-4">
<div class="col-lg-6">
<section>
<StatusMessage Message="@errorMessage" />
<EditForm Model="Input" method="post" OnValidSubmit="LoginUser" FormName="login">
Expand Down Expand Up @@ -55,7 +55,7 @@
</EditForm>
</section>
</div>
<div class="col-md-6 col-md-offset-2">
<div class="col-lg-4 col-lg-offset-2">
<section>
<h3>Use another service to log in.</h3>
<hr />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<h1>Register</h1>

<div class="row">
<div class="col-md-4">
<div class="col-lg-6">
<StatusMessage Message="@Message" />
<EditForm Model="Input" asp-route-returnUrl="@ReturnUrl" method="post" OnValidSubmit="RegisterUser" FormName="register">
<DataAnnotationsValidator />
Expand All @@ -45,7 +45,7 @@
<button type="submit" class="w-100 btn btn-lg btn-primary">Register</button>
</EditForm>
</div>
<div class="col-md-6 col-md-offset-2">
<div class="col-lg-4 col-lg-offset-2">
<section>
<h3>Use another service to register.</h3>
<hr />
Expand Down