Skip to content

Commit

Permalink
Add basic input text validation [issue #38]
Browse files Browse the repository at this point in the history
  • Loading branch information
danijanos committed Dec 11, 2018
1 parent 5532e5a commit bd96f9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ <h3 class="display-5 text-info font-weight-bold">Árfolyam</h3>
<div class="card-body text-info">
<div class="input-group">
<input type="text" id="purchaseAmount" class="form-control" placeholder="Mennyiség:" aria-label="Vásárolni kívánt valuta mennyisége"
aria-describedby="basic-addon2">
aria-describedby="basic-addon2" required>
<div class="input-group-append">
<select id="purchaseDropdown" class="custom-select"></select>
</div>
Expand All @@ -101,7 +101,7 @@ <h3 class="display-5 text-info font-weight-bold">Árfolyam</h3>
<div class="card-body text-info">
<div class="input-group">
<input type="text" id="sellAmount" class="form-control" placeholder="Mennyiség:" aria-label="Eladni kívánt valuta mennyisége"
aria-describedby="basic-addon2">
aria-describedby="basic-addon2" required>
<div class="input-group-append">
<select id="sellDropdown" class="custom-select"></select>
</div>
Expand Down

0 comments on commit bd96f9d

Please sign in to comment.