Adds limit warning. Fix input max value to 500
This commit is contained in:
parent
2c8bb353a6
commit
905f70576d
1 changed files with 4 additions and 1 deletions
|
|
@ -45,7 +45,7 @@
|
|||
<div class="input">
|
||||
<input type="number" id="fiat"
|
||||
name="fiat" ng-attr-placeholder="{{'Amount in USD'}}"
|
||||
min="0.01" max="2000"
|
||||
min="0.01" max="500"
|
||||
ng-model="fiat" autocomplete="off" required>
|
||||
|
||||
<a class="postfix button black">USD</a>
|
||||
|
|
@ -67,6 +67,9 @@
|
|||
<input class="button black round expand"
|
||||
ng-disabled="!buy.selectedWalletId || !fiat"
|
||||
type="submit" value="Buy now">
|
||||
<div class="size-10 text-gray text-center">
|
||||
Purchase Amount is limited to USD 500 per day
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue