diff options
Diffstat (limited to 'core/templates/twofactorshowchallenge.php')
-rw-r--r-- | core/templates/twofactorshowchallenge.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/core/templates/twofactorshowchallenge.php b/core/templates/twofactorshowchallenge.php new file mode 100644 index 00000000000..66f5ed312ec --- /dev/null +++ b/core/templates/twofactorshowchallenge.php @@ -0,0 +1,19 @@ +<?php +/** @var $l OC_L10N */ +/** @var $_ array */ +/* @var $error boolean */ +$error = $_['error']; +/* @var $provider OCP\Authentication\TwoFactorAuth\IProvider */ +$provider = $_['provider']; +/* @var $template string */ +$template = $_['template']; +?> + +<fieldset class="warning"> + <legend><strong><?php p($provider->getDisplayName()); ?></strong></legend> + <p><?php p($l->t('Please authenticate using the selected factor.')) ?></p> +</fieldset> +<?php if ($error): ?> +<span class="warning"><?php p($l->t('An error occured while verifying the token')); ?></span> +<?php endif; ?> +<?php print_unescaped($template); ?> |