nextcloud/apps/user_openid/templates/settings.php

9 lines
616 B
PHP
Raw Normal View History

<form id="openidform">
2011-08-14 13:09:51 +04:00
<fieldset class="personalblock">
2011-08-14 18:12:27 +04:00
<label for="openid"><strong>OpenID</strong></label>
<input type="text" id="openid" value="<?php echo ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].OC::$WEBROOT.'/?'; echo OC_User::getUser(); ?>" title="you can authenticate to other sites with this address" />
2011-08-14 13:09:51 +04:00
<label for="identity">Authorized</label>
<input type="text" name="identity" id="identity" value="<?php echo $_['identity']; ?>" placeholder="OpenID provider" title="Wordpress, Identi.ca, Launchpad, &hellip;" />
</fieldset>
2011-08-14 13:09:51 +04:00
</form>