Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>Account Hub Email Password Test</title>
<link rel="stylesheet" href="chrome://messenger/skin/accountHub.css" />
<link rel="stylesheet" href="chrome://messenger/skin/accountHubForms.css" />
<link rel="localization" href="messenger/accountcreation/accountHub.ftl" />
<link rel="localization" href="messenger/accountcreation/accountSetup.ftl" />
</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>
<template id="accountHubStepTemplate" xmlns="http://www.w3.org/1999/xhtml">
<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="accountHubEmailPasswordFormTemplate"
>
<form id="passwordForm" class="account-hub-form" slot="content">
<div class="hub-body password-form-body">
<div class="input-control">
<input
id="password"
type="password"
class="input-field animated"
placeholder=""
required="required"
/>
<label
for="password"
class="animated"
data-l10n-id="account-setup-password-label"
data-l10n-attrs="accesskey"
>
</label>
</div>
<div class="remember-button-container">
<label class="toggle-container-with-text">
<input
id="rememberPassword"
class="check-button"
type="checkbox"
/>
<span
class="checkbox-label"
data-l10n-id="account-setup-remember-password"
data-l10n-attrs="accesskey"
>
</span>
</label>
</div>
</div>
<button type="submit" hidden="hidden"></button>
</form>
</template>
<email-password-form></email-password-form>
</body>
</html>