nomode.php
974 Bytes
<?php
global $profile;
?>
<div id="login">
<img src="<?php print_unescaped(OCP\image_path("", "logo.png")); ?>" alt="ownCloud" />
<ul>
<li class='error'>
<div id="setup_form">
<p><?php p($l->t('This is an OpenID server endpoint. For more information, see '));?><a href='http://openid.net/' title='openid.net'>http://openid.net/</a></p>
<?php if($_['user']):?>
<p><?php p($l->t('Identity: <b>').$profile['idp_url']); ?></b></p>
<p><?php p($l->t('Realm: <b>').$profile['php_realm']); ?></b></p>
<p><?php p($l->t('User: <b>').$_['user']); ?></b></p>
<p><a href="<?php print_unescaped($profile['idp_url']); ?>?openid.mode=login"><?php p($l->t('Login')); ?></a>
<?php if($profile['allow_test'] === true): ?>
<a href="<?php p($profile['idp_url']); ?>?openid.mode=test">Test</a>
<?php endif; ?>
<?php else: ?>
<p><?php p($l->t('Error: <b>No user Selected')); ?></p>
<?php endif; ?>
</div>
</li>
</ul>
</div>