|
6 | 6 | <div class="field">
|
7 | 7 | <label class="required">{{t 'Choose country'}}</label>
|
8 | 8 | <UiDropdown @class="search selection" @selected={{this.tax.country}} @forceSelection={{false}} @fullTextSearch={{true}}>
|
9 |
| - <Input @type="hidden" @autocomplete="some-random-string" @id="tax_country" @value={{this.tax.country}} /> |
| 9 | + <Input @type="hidden" @autocomplete="tax-country" @id="tax_country" @value={{this.tax.country}} /> |
10 | 10 | <i class="dropdown icon"></i>
|
11 | 11 | <div class="default text">{{t 'Select country'}}</div>
|
12 | 12 | <div class="menu">
|
|
21 | 21 | </div>
|
22 | 22 | <div class="field">
|
23 | 23 | <label class="required">{{t 'Tax name'}}</label>
|
24 |
| - <Input @type="text" @autocomplete="some-random-string" @id="tax_name" @value={{this.tax.name}} /> |
| 24 | + <Input @type="text" @autocomplete="tax-name" @id="tax_name" @value={{this.tax.name}} /> |
25 | 25 | </div>
|
26 | 26 | <div class="field">
|
27 | 27 | <label class="required">{{t 'Tax rate'}}</label>
|
28 |
| - <Input @type="number" @autocomplete="some-random-string" @id="tax_rate" @min={{0}} @max={{100}} @value={{this.tax.rate}} /> |
| 28 | + <Input @type="number" @autocomplete="tax-rate" @id="tax_rate" @min={{0}} @max={{100}} @value={{this.tax.rate}} /> |
29 | 29 | </div>
|
30 | 30 | <div class="field">
|
31 | 31 | <label class="required">{{t 'Tax ID'}}</label>
|
32 |
| - <Input @type="text" @autocomplete="some-random-string" @id="tax_id" @value={{this.tax.taxId}} /> |
| 32 | + <Input @type="text" @autocomplete="tax-id" @id="tax_id" @value={{this.tax.taxId}} /> |
33 | 33 | </div>
|
34 | 34 | <div class="field">
|
35 | 35 | <label>{{t 'Tax Invoices'}}</label>
|
36 | 36 | <div class="ui checkbox">
|
37 |
| - <Input @type="checkbox" @autocomplete="some-random-string" @id="send_tax_invoices" @name="send_tax_invoices" @checked={{this.tax.shouldSendInvoice}} /> |
| 37 | + <Input @type="checkbox" @autocomplete="send-tax-invoices" @id="send_tax_invoices" @name="send_tax_invoices" @checked={{this.tax.shouldSendInvoice}} /> |
38 | 38 | <label for="send_tax_invoices">
|
39 | 39 | <strong>{{t 'Send tax invoice to attendees'}} : </strong>
|
40 | 40 | <span class="text muted">
|
|
46 | 46 | </div>
|
47 | 47 | <div class="field">
|
48 | 48 | <label>{{t 'Registered Company'}}</label>
|
49 |
| - <Input @type="text" @autocomplete="some-random-string" @id="tax_invoice_company" @value={{this.tax.registeredCompany}} /> |
| 49 | + <Input @type="text" @autocomplete="tax-invoice-company" @id="tax_invoice_company" @value={{this.tax.registeredCompany}} /> |
50 | 50 | </div>
|
51 | 51 | <div class="field">
|
52 | 52 | <label>{{t 'Business Address'}}</label>
|
53 |
| - <Textarea @rows={{3}} @autocomplete="some-random-string" @id="tax_invoice_address" @value={{this.tax.address}} /> </div> |
| 53 | + <Textarea @rows={{3}} @autocomplete="tax-invoice-address" @id="tax_invoice_address" @value={{this.tax.address}} /> </div> |
54 | 54 | <div class="field">
|
55 | 55 | <label>{{t 'City'}}</label>
|
56 |
| - <Input @type="text" @autocomplete="some-random-string" @id="tax_invoice_city" @value={{this.tax.city}} /> |
| 56 | + <Input @type="text" @autocomplete="tax-invoice-city" @id="tax_invoice_city" @value={{this.tax.city}} /> |
57 | 57 | </div>
|
58 | 58 | <div class="field">
|
59 | 59 | <label>{{t 'State'}}</label>
|
60 |
| - <Input @type="text" @autocomplete="some-random-string" @id="tax_invoice_state" @value={{this.tax.state}} /> |
| 60 | + <Input @type="text" @autocomplete="tax-invoice-state" @id="tax_invoice_state" @value={{this.tax.state}} /> |
61 | 61 | </div>
|
62 | 62 | <div class="field">
|
63 | 63 | <label>{{t 'Zipcode'}}</label>
|
64 |
| - <Input @type="text" @autocomplete="some-random-string" @id="tax_invoice_zipcode" @value={{this.tax.zip}} /> |
| 64 | + <Input @type="text" @autocomplete="tax-invoice-zipcode" @id="tax_invoice_zipcode" @value={{this.tax.zip}} /> |
65 | 65 | </div>
|
66 | 66 | <div class="field">
|
67 | 67 | <label>{{t 'Text for invoice footer (optional)'}}</label>
|
68 |
| - <Textarea @rows={{3}} @id="tax_invoice_footer" @value={{this.tax.invoiceFooter}} /> </div> |
| 68 | + <Textarea @rows={{3}} @autocomplete="tax-invoice-footer" @id="tax_invoice_footer" @value={{this.tax.invoiceFooter}} /> </div> |
69 | 69 | <div class="grouped fields">
|
70 | 70 | <label for="privacy">{{t 'Add or Include Tax Fee'}}</label>
|
71 | 71 | <div class="field">
|
|
0 commit comments