Skip to content

Commit

Permalink
Improved form.
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelcanosantana committed Nov 25, 2023
1 parent 0ffac87 commit 87762d3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
14 changes: 3 additions & 11 deletions Pages/Login.razor
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@
<PageTitle>Iniciar Sesión | Cirsa</PageTitle>


<style>
</style>


<div class="container py-4 jumbotron-a">


Expand All @@ -25,11 +18,10 @@

<div class="col-12 col-md-6">

<form>
<form class="user-form">
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email</label>
<input type="email" class="form-control" id="emailInput" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Contraseña</label>
Expand All @@ -39,7 +31,7 @@
<input type="checkbox" class="form-check-input" id="rememberUserCheck">
<label class="form-check-label" for="exampleCheck1">Recordar usuario</label>
</div>
<button type="submit" class="btn btn-primary">Continuar</button>
<button type="submit" class="btn button-gold-a">Continuar</button>
</form>

</div>
Expand All @@ -55,7 +47,7 @@


@code {
private int currentCount = 0;
public int currentCount = 0;

private void IncrementCount()
{
Expand Down
10 changes: 10 additions & 0 deletions wwwroot/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,13 @@ code {
max-width: 800px;
border-radius: 10px;
}

.user-form {
background-color: #1A171B;
padding: 20px;
border-radius: 10px;
}

.button-gold-a {
background: #D4A52D;
}

0 comments on commit 87762d3

Please sign in to comment.