mirror of
https://github.com/bitwarden/browser
synced 2026-01-03 17:13:47 +00:00
* Show only business org create form if provider * Remove business name from provider views
33 lines
1.4 KiB
HTML
33 lines
1.4 KiB
HTML
<app-navbar></app-navbar>
|
|
<div class="container page-content">
|
|
<div class="page-header">
|
|
<h1>{{'setupProvider' | i18n}}</h1>
|
|
</div>
|
|
<p>{{'setupProviderDesc' | i18n}}</p>
|
|
|
|
<form #form (ngSubmit)="submit()" [appApiAction]="formPromise" ngNativeValidate *ngIf="loading">
|
|
<h2 class="mt-5">{{'generalInformation' | i18n}}</h2>
|
|
<div class="row">
|
|
<div class="form-group col-6">
|
|
<label for="name">{{'providerName' | i18n}}</label>
|
|
<input id="name" class="form-control" type="text" name="Name" [(ngModel)]="name" required>
|
|
</div>
|
|
<div class="form-group col-6">
|
|
<label for="billingEmail">{{'billingEmail' | i18n}}</label>
|
|
<input id="billingEmail" class="form-control" type="text" name="BillingEmail" [(ngModel)]="billingEmail" required>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-4">
|
|
<button type="submit" class="btn btn-primary btn-submit" [disabled]="form.loading">
|
|
<i class="fa fa-spinner fa-spin" title="{{'loading' | i18n}}" aria-hidden="true"></i>
|
|
<span>{{'submit' | i18n}}</span>
|
|
</button>
|
|
<button type="button" class="btn btn-outline-secondary" (click)="cancel()" *ngIf="showCancel">
|
|
{{'cancel' | i18n}}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<app-footer></app-footer>
|