Skip to content

Commit

Permalink
Update Login.razor
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelcanosantana committed Nov 25, 2023
1 parent d7be6d2 commit 0ffac87
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Pages/Login.razor
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@

<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<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">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
<label for="exampleInputPassword1" class="form-label">Contraseña</label>
<input type="password" class="form-control" id="passwordInput">
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Check me out</label>
<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>
</form>
Expand Down

0 comments on commit 0ffac87

Please sign in to comment.