blob: ca1be26ca763898b7e4aefa237133de127f441af [file] [log] [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import {html} from '//resources/lit/v3_0/lit.rollup.js';
import type {ProfilePickerAppElement} from './profile_picker_app.js';
export function getHtml(this: ProfilePickerAppElement) {
return html`<!--_html_template_start_-->
<img id="banner-right" alt="">
<img id="banner-left" alt="">
<cr-view-manager id="viewManager">
<profile-picker-main-view id="mainView" slot="view">
</profile-picker-main-view>
<cr-lazy-render-lit id="profileTypeChoice" .template="${() => html`
<profile-type-choice slot="view"
.profileThemeInfo="${this.newProfileThemeInfo}"
.profileCreationInProgress="${this.profileCreationInProgress}">
</profile-type-choice>`}">
</cr-lazy-render-lit>
<cr-lazy-render-lit id="profileSwitch"
.template="${() => html`<profile-switch slot="view"></profile-switch>`}">
</cr-lazy-render-lit>
</cr-view-manager>
<!--_html_template_end_-->`;
}