Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>Account Hub Address Book Test</title>
<script type="module" src="chrome://messenger/content/accountcreation/content/widgets/address-book-option-select.mjs"></script>
</head>
<body>
<template
id="accountHubHeaderTemplate"
>
<header id="accountHubHeader" class="hub-header">
<div id="brandingHeader" class="branding-header" hidden="hidden">
<h1>
<span
class="branding-header-name"
data-l10n-id="account-hub-brand">
</span>
<span
class="branding-header-title"
data-l10n-id="account-hub-title">
</span>
</h1>
<button
id="closeButton"
class="button button-flat button-round icon-button icon-only modal-close-button"
type="button"
>
<img class="icon-close-lg" src="" alt="" />
</button>
</div>
<!-- Title Text for Email Setup -->
<h1 id="accountHubHeaderTitle"
class="sub-view-title">
<slot name="title"></slot>
</h1>
<details id="emailFormNotification" class="notification-bar">
<summary id="emailFormNotificationSummary"
class="notification-title-container">
<img
class="form-icon icon-warning"
src=""
alt=""
/>
<img
class="form-icon icon-success"
src=""
alt=""
/>
<img
class="form-icon icon-info"
src=""
alt=""
/>
<img
class="form-icon icon-danger"
src=""
alt=""
/>
<p id="emailFormNotificationTitle" class="notification-title">
<span class="localized-title"></span>
<span class="raw-title"></span>
</p>
<div id="emailFormNotificationToggle">
<span data-l10n-id="account-hub-notification-show-more"></span>
<span data-l10n-id="account-hub-notification-show-less"></span>
</div>
</summary>
<p id="emailFormNotificationText" class="notification-text">
<span class="localized-description"></span>
<span class="raw-description"></span>
</p>
</details>
</header>
</template>
<account-hub-header>
<span id="title" slot="title">
</span>
<span id="subheader" slot="subheader">
</span>
</account-hub-header>
<div class="account-hub-grid">
<slot name="content"></slot>
</div>
</template>
<template
id="accountHubAddressBookOptionSelectTemplate"
>
<form
id="optionSelectForm"
class="account-hub-address-book-form"
slot="content"
>
<div class="hub-body option-select-body">
<button
id="syncExistingAccounts"
class="account-hub-option-button fetching"
disabled="disabled"
>
<div class="option-icon">
<img
class="sync-icon"
data-l10n-id="address-book-sync-existing-icon"
/>
</div>
<div class="option-content">
<span
class="option-title"
data-l10n-id="address-book-sync-existing">
</span>
<span id="syncExistingAccountsData" class="option-data"></span>
</div>
</button>
</div>
</form>
</template>
<address-book-option-select></address-book-option-select>
</body>
</html>