1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

[AC-1418] Cleanup form html

This commit is contained in:
Shane Melton
2023-06-21 15:11:08 -07:00
parent bc38cdff11
commit 945289bf05

View File

@@ -1,10 +1,10 @@
<form [formGroup]="formGroup" [bitSubmit]="submit">
<bit-form-field class="tw-w-1/2">
<bit-label>{{ "subscriptionSeats" | i18n }}</bit-label>
<input bitInput id="smSeatCount" formControlName="seatCount" type="number" step="1" />
<input bitInput id="smSeatCount" formControlName="seatCount" type="number" step="1" min="0" />
<bit-hint>
<strong>{{ "total" | i18n }}:</strong>
{{ formGroup.value.seatCount }} &times; {{ options.seatPrice | currency }} =
{{ formGroup.value.seatCount || 0 }} &times; {{ options.seatPrice | currency }} =
{{ seatTotal | currency }} / {{ options.interval | i18n }}
</bit-hint>
</bit-form-field>