Skip to main content
Search the Design System
Ver. 3.0.0 For the older version visit v2 documentation

Currency amount

Help users provide amount of money.

When to use this pattern

Follow this pattern whenever you need to display or ask users for an amount of money.

How it works

Follow the instructions on how to ask and display currency amounts.

How to ask

Use a numeric text input to allow users input the amount of money. Consider using an fixed width text input depending on the maximum length of the desired input.

Depending on the case, you might allow decimals or only whole numbers. If your service does not allow decimals, consider if it is appropriate to allow decimals on user input and round up or down any amounts before validating and storing.

When validating the amount, ignore leading and ending spaces and make sure to ignore these characters when converting the amount to a number.

Only allow the user to enter whole numbers, or numbers with one or 2 decimal places, for example, 10, 10,4 or 10,40. Do not allow numbers with more than 2 decimal places.

For example, the following are valid amounts:

  • 123456
  • 123456,12
  • 1234567
  • 12
  • 123,2
  • 125

End the text input label with the currency symbol, for example Enter your income (€)

Whole number amounts

If you allow only whole number inputs, use the whole number numeric pattern, for example:

Example

HTML code

<form action="" class="govcy-form" novalidate="">
<div class="govcy-form-control">
<label class="govcy-label govcy-label-primary" for="in1">Enter your income (€)</label>
<input id="in1" type="text" class="govcy-text-input govcy-text-input-char_20" spellcheck="false" pattern="[0-9]*" inputmode="numeric" >
</div>
</form>

Decimal number amounts

If you allow only decimal number inputs, use the decimal number numeric pattern, for example:

Example

HTML code

<form action="" class="govcy-form" novalidate> 
<div class="govcy-form-control">
<label class="govcy-label govcy-label-primary" for="in2">Enter your income (€)</label>
<input type="text" spellcheck="false" class="govcy-text-input govcy-text-input-char_20" id="in2">
</div>
</form>

Allow the user to enter numbers with or without comma “,” as decimals separator

How to display

When displaying stored or submitted amounts of money, they should start with the currency sign (for example “€” for EUR) and then the amount. The amount should be displayed with digit grouping separators (i.e. using “.” to separate thousands, millions and so on). If your service allows decimals (for example cents) display 2 decimal places.

For example:

  • €123.456
  • €1.234.567
  • €123.456.789,12
  • €123,20
  • €12

Screen readers have trouble recognizing the thousands and decimal separators in conjunction with a currency sign. When displaying the amounts, use a combination of aria-label and aria-hidden=”true” to help screen readers read the amount as a number. In aria-label the whole part of the amount should be written as integer and the digits part written as cents. For example:

In English

<div aria-label="1234566 euros and 30 cents">
<p aria-hidden="true">€1.234.566,30</p>
</div>

In Greek

<div aria-label="1234566 ευρώ και 30 σεντ">
<p aria-hidden="true">€1.234.566,30</p>
</div>

When filling up stored or submitted amounts of money within text inputs, they should appear in the form that is appropriate for input, without digit grouping separators (i.e. using “.” to separate thousands, millions and so on) and 2 decimal places.

Example of filled up currency amount inputs:

HTML code

<form action="" class="govcy-form" novalidate=""> 
<div class="govcy-form-control">
<label class="govcy-label govcy-label-primary" for="in3">Whole number (€)</label>
<input type="text" value="123456" spellcheck="false" pattern="[0-9]*" inputmode="numeric" class="govcy-text-input govcy-text-input-char_20" maxlength="20" id="in3">
</div>
<div class="govcy-form-control">
<label class="govcy-label govcy-label-primary" for="in4">Large decimal number (€)</label>
<input type="text" value="123456789,12" spellcheck="false" class="govcy-text-input govcy-text-input-char_20" maxlength="20" id="in4">
</div>
<div class="govcy-form-control">
<label class="govcy-label govcy-label-primary" for="in5">Small whole number (€)</label>
<input type="text" value="123" spellcheck="false" pattern="[0-9]*" inputmode="numeric" class="govcy-text-input govcy-text-input-char_20" maxlength="20" id="in5">
</div>
<div class="govcy-form-control">
<label class="govcy-label govcy-label-primary" for="in6">Small decimal number (€)</label>
<input type="text" value="123,02" spellcheck="false" class="govcy-text-input govcy-text-input-char_20" maxlength="20" id="in6">
</div>
<div class="govcy-form-control">
<label class="govcy-label govcy-label-primary" for="in7">Another small decimal number (€)</label>
<input type="text" value="123,20" spellcheck="false" class="govcy-text-input govcy-text-input-char_20" maxlength="20" id="in7">
</div>
</form>

Error messages

Make sure to follow the instructions for error messages and error summary when validating user input and to use the text input error variant style.

Contribute

If you have used or researched this pattern, please let us know what you found so we can make it better for everyone. Send us an email at dsf@dits.dmrid.gov.cy to get in touch.

We are particularly interested in:

  • research on screen readers