blob: 550771844c2feb23e1684a244e78799eb16871ff [file] [log] [blame]
<!-- Copyright 2016 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file. -->
<link rel="import" href="chrome://resources/html/polymer.html">
<!--
Unrecoverable cryptohome error card that shows to use when an unrecoverable
cryptohome error happens. It asks user to help us debugging the issue by
sending us a feedback and allows user to re-create the cryptohome so that
the device could still be used.
Events:
'done' - fired when user clicks on continue button.
-->
<dom-module id="unrecoverable-cryptohome-error-card">
<link rel="stylesheet" href="oobe_flex_layout.css">
<link rel="stylesheet" href="unrecoverable_cryptohome_error_card.css">
<template>
<div class="content">
<div i18n-content="unrecoverableCryptohomeErrorMessageTitle" class="title">
</div>
<div class="message"
i18n-values=".innerHTML:unrecoverableCryptohomeErrorMessage">
</div>
<div class="horizontal-reverse layout justified center">
<gaia-button on-tap="onContinueClicked_"
i18n-content="unrecoverableCryptohomeErrorContinue">
</gaia-button>
</div>
</div>
</template>
</dom-module>