mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
* Fix CORS issue on in-line theming javascript * Fix date picker icon color * Add comment * Fix table theming in dark mode * Selfhosted navbar fix * Rename selector to avoid clashing with bootstrap * Do not set initial theme if default * Fix .text-danger style in dropdown lists * Fix toast style, restructure toast and card scss * Fix table and dropdown list hover color * Use callout component for Disable Send warning * Remove unneeded theming for hovering over links * Undo changes to register enterprise2 layout * Apply theming to Safari input field icons e.g. Caps lock, password autofill * Selectively apply themed logo CSS * Fix unrelated linting * Fix webpack config to bundle theme.js Co-authored-by: Danny Murphy <6512845+dltmurphy@users.noreply.github.com>
28 lines
1.1 KiB
HTML
28 lines
1.1 KiB
HTML
<div class="mt-5 d-flex justify-content-center" *ngIf="loading">
|
|
<div>
|
|
<img class="mb-4 logo logo-themed" alt="Bitwarden">
|
|
<p class="text-center">
|
|
<i class="fa fa-spinner fa-spin fa-2x text-muted" title="{{'loading' | i18n}}" aria-hidden="true"></i>
|
|
<span class="sr-only">{{'loading' | i18n}}</span>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="container" *ngIf="!loading && !authed">
|
|
<div class="row justify-content-md-center mt-5">
|
|
<div class="col-5">
|
|
<p class="lead text-center mb-4">{{'setupProvider' | i18n}}</p>
|
|
<div class="card d-block">
|
|
<div class="card-body">
|
|
<p>{{'setupProviderLoginDesc' | i18n}}</p>
|
|
<hr>
|
|
<div class="d-flex">
|
|
<a routerLink="/" [queryParams]="{email: email}" class="btn btn-primary btn-block">
|
|
{{'logIn' | i18n}}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|