|
2 | 2 | <h3 class="ui header">
|
3 | 3 | {{t 'Payment Information'}}
|
4 | 4 | </h3>
|
| 5 | + <h5 class="ui header"> |
| 6 | + {{t 'The information you provide here will be added to your invoices. Please ensure you have the correct information added here as it is not possible to regenerate invoices with different information at a later time.'}} |
| 7 | + </h5> |
5 | 8 | <div class="field">
|
6 |
| - <label class="required" for="contactName">{{t 'Contact Name'}}</label> |
| 9 | + <label for="company">{{t 'Company'}}</label> |
| 10 | + <Input |
| 11 | + @type="text" |
| 12 | + @id="company" |
| 13 | + @value={{this.userBillingInfo.company}} /> |
| 14 | + </div> |
| 15 | + <div class="field"> |
| 16 | + <label for="contactName">{{t 'Contact Name'}}</label> |
7 | 17 | <Input
|
8 | 18 | @type="text"
|
9 | 19 | @id="contactName"
|
10 | 20 | @value={{this.userBillingInfo.billingContactName}} />
|
11 | 21 | </div>
|
12 | 22 | <div class="field">
|
13 |
| - <label class="required" for="phone">{{t 'Phone'}}</label> |
| 23 | + <label for="phone">{{t 'Phone'}}</label> |
14 | 24 | <Input
|
15 | 25 | @type="text"
|
16 | 26 | @id="phone"
|
17 | 27 | @value={{this.userBillingInfo.billingPhone}} />
|
18 | 28 | </div>
|
19 | 29 | <div class="field">
|
20 |
| - <label class="required" for="company">{{t 'Company'}}</label> |
21 |
| - <Input |
22 |
| - @type="text" |
23 |
| - @id="company" |
24 |
| - @value={{this.userBillingInfo.company}} /> |
| 30 | + <label for="address">{{t 'Address'}}</label> |
| 31 | + <Textarea |
| 32 | + @rows="2" |
| 33 | + @id="address" |
| 34 | + @value={{this.userBillingInfo.billingAddress}} /> |
25 | 35 | </div>
|
26 | 36 | <div class="field">
|
27 |
| - <label for="taxID">{{t 'Tax ID or Business ID'}}</label> |
| 37 | + <label for="zip">{{t 'Zip Code'}}</label> |
28 | 38 | <Input
|
29 | 39 | @type="text"
|
30 |
| - @id="taxID" |
31 |
| - @value={{this.userBillingInfo.billingTaxInfo}} /> |
| 40 | + @id="zip" |
| 41 | + @value={{this.userBillingInfo.billingZipCode}} /> |
32 | 42 | </div>
|
33 | 43 | <div class="field">
|
34 |
| - <label class="required" for="address">{{t 'Address'}}</label> |
35 |
| - <Textarea |
36 |
| - @rows="2" |
37 |
| - @id="address" |
38 |
| - @value={{this.userBillingInfo.billingAddress}} /> </div> |
39 |
| - <div class="field"> |
40 |
| - <label class="required" for="city">{{t 'City'}}</label> |
| 44 | + <label for="city">{{t 'City'}}</label> |
41 | 45 | <Input
|
42 |
| -@type="text" |
43 |
| -@id="city" |
44 |
| -@value={{this.userBillingInfo.billingCity}} /> |
| 46 | + @type="text" |
| 47 | + @id="city" |
| 48 | + @value={{this.userBillingInfo.billingCity}} /> |
45 | 49 | </div>
|
46 | 50 | <div class="field">
|
47 | 51 | <label for="state">{{t 'State'}}</label>
|
48 | 52 | <Input
|
49 |
| -@type="text" |
50 |
| -@id="state" |
51 |
| -@value={{this.userBillingInfo.billingState}} /> |
| 53 | + @type="text" |
| 54 | + @id="state" |
| 55 | + @value={{this.userBillingInfo.billingState}} /> |
52 | 56 | </div>
|
53 | 57 | <div class="field">
|
54 |
| - <label class="required">{{t 'Country'}}</label> |
| 58 | + <label >{{t 'Country'}}</label> |
55 | 59 | <UiDropdown
|
56 |
| -@class="search selection" |
57 |
| -@selected={{this.userBillingInfo.billingCountry}} |
58 |
| -@forceSelection={{false}} |
59 |
| -@fullTextSearch={{true}}> |
| 60 | + @class="search selection" |
| 61 | + @selected={{this.userBillingInfo.billingCountry}} |
| 62 | + @forceSelection={{false}} |
| 63 | + @fullTextSearch={{true}}> |
60 | 64 | <Input
|
61 |
| -@type="hidden" |
62 |
| -@autocomplete="no" |
63 |
| -@id="country" |
64 |
| -@value={{this.userBillingInfo.billingCountry}} /> |
| 65 | + @type="hidden" |
| 66 | + @autocomplete="no" |
| 67 | + @id="country" |
| 68 | + @value={{this.userBillingInfo.billingCountry}} /> |
65 | 69 | <i class="dropdown icon"></i>
|
66 | 70 | <div class="default text">{{t 'Select country'}}</div>
|
67 | 71 | <div class="menu">
|
|
75 | 79 | </UiDropdown>
|
76 | 80 | </div>
|
77 | 81 | <div class="field">
|
78 |
| - <label class="required" for="zip">{{t 'Zip Code'}}</label> |
| 82 | + <label for="taxID">{{t 'Tax ID or Business ID'}}</label> |
79 | 83 | <Input
|
80 |
| -@type="text" |
81 |
| -@id="zip" |
82 |
| -@value={{this.userBillingInfo.billingZipCode}} /> |
| 84 | + @type="text" |
| 85 | + @id="taxID" |
| 86 | + @value={{this.userBillingInfo.billingTaxInfo}} /> |
83 | 87 | </div>
|
84 | 88 | <div class="field">
|
85 | 89 | <label for="additionalInfo">{{t 'Additional Information'}}</label>
|
86 | 90 | <Textarea
|
87 |
| -@rows="4" |
88 |
| -@id="additionalInfo" |
89 |
| -@value={{this.userBillingInfo.billingAdditionalInfo}} /> </div> |
| 91 | + @rows="4" |
| 92 | + @id="additionalInfo" |
| 93 | + @value={{this.userBillingInfo.billingAdditionalInfo}} /> |
| 94 | + </div> |
90 | 95 |
|
91 | 96 | <button type="submit" class="ui teal submit button">
|
92 | 97 | {{t 'Submit'}}
|
|
0 commit comments