Skip to content

Commit

Permalink
Fixed some HTML elements using wrong IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
ANDRESROMEROH committed Nov 5, 2020
1 parent f0aea0e commit 32bcd27
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ <h2>Calculadora</h2>
</div>

<div class="form-group mx-3">
<button class="btn btn-outline-primary btn-sm" data-toggle="modal" data-target="#exampleModal" href="#"
<button class="btn btn-outline-primary btn-sm" data-toggle="modal" data-target="#modal-salary" href="#"
role="button">Agregar por Período</button>
</div>
</div>
Expand Down Expand Up @@ -164,7 +164,7 @@ <h1>₡ <strong id="aguinaldo-total-colones">0.00</strong></h1>

<hr>

<div class="modal fade" id="exampleModal">
<div class="modal fade" id="modal-salary">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
Expand All @@ -175,8 +175,8 @@ <h5 class="modal-title">Salario por Período</h5>
</div>
<div class="modal-body">
<div class="form-group">
<label for="exampleSelect1">Desde:</label>
<select id="select-from" class="form-control" id="exampleSelect1">
<label for="from">Desde:</label>
<select id="select-from" class="form-control" id="from">
<option value="diciembre-1" selected>Diciembre (2019)</option>
<option value="enero-2">Enero</option>
<option value="febrero-3">Febrero</option>
Expand All @@ -192,8 +192,8 @@ <h5 class="modal-title">Salario por Período</h5>
</select>
</div>
<div class="form-group">
<label for="exampleSelect1">Hasta:</label>
<select id="select-to" class="form-control" id="exampleSelect1">
<label for="to">Hasta:</label>
<select id="select-to" class="form-control" id="to">
<option value="diciembre-1">Diciembre (2019)</option>
<option value="enero-2">Enero</option>
<option value="febrero-3">Febrero</option>
Expand Down

0 comments on commit 32bcd27

Please sign in to comment.