mirror of
https://github.com/bitwarden/browser
synced 2025-12-29 14:43:31 +00:00
* Added select-payment-method.component in shared lib Because we're going to be implementing the same functionality for providers and orgs/users, I wanted to start moving some of this shared functionality into libs so it can be accessed in both web and bit-web. Additionally, the Stripe and Braintree functionality has been moved into their own services for more central management. * Added generalized manage-tax-information component to shared lib * Added generalized add-account-credit-dialog component to shared libs * Added generalized verify-bank-account component to shared libs * Added dialog for selection of provider payment method * Added provider-payment-method component * Added provider-payment-method component to provider layout
19 lines
651 B
HTML
19 lines
651 B
HTML
<form [formGroup]="formGroup" [bitSubmit]="submit">
|
|
<bit-dialog dialogSize="large">
|
|
<span bitDialogTitle class="tw-font-semibold">
|
|
{{ "addPaymentMethod" | i18n }}
|
|
</span>
|
|
<ng-container bitDialogContent>
|
|
<app-select-payment-method [showAccountCredit]="false" />
|
|
</ng-container>
|
|
<ng-container bitDialogFooter>
|
|
<button bitButton bitFormButton buttonType="primary" type="submit">
|
|
{{ "submit" | i18n }}
|
|
</button>
|
|
<button bitButton buttonType="secondary" type="button" [bitDialogClose]="ResultType.Closed">
|
|
{{ "cancel" | i18n }}
|
|
</button>
|
|
</ng-container>
|
|
</bit-dialog>
|
|
</form>
|