diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-08-14 15:06:16 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-08-14 15:06:16 +0200 |
commit | 970888b92d967f657b4f719a729a823cbf7e2437 (patch) | |
tree | 4e9e842e404d29276d8bc665447ec18a89ca69fe /apps | |
parent | 6e30ade0b34224f92ecf4bc7c95cc319006ee4b8 (diff) | |
download | nextcloud-server-970888b92d967f657b4f719a729a823cbf7e2437.tar.gz nextcloud-server-970888b92d967f657b4f719a729a823cbf7e2437.zip |
fix some details in Personal
Diffstat (limited to 'apps')
-rw-r--r-- | apps/user_openid/templates/settings.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/user_openid/templates/settings.php b/apps/user_openid/templates/settings.php index add3345f7b1..b912ff1b79a 100644 --- a/apps/user_openid/templates/settings.php +++ b/apps/user_openid/templates/settings.php @@ -1,6 +1,9 @@ <form id="openidform"> <fieldset class="personalblock"> - <p><strong>OpenID</strong> <?php echo ((isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == 'on') ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].$WEBROOT.'/?'; echo OC_User::getUser(); ?></p> + <p><strong>OpenID</strong> + <a href="<?php echo ((isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == 'on') ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].OC::$WEBROOT.'/?'; echo OC_User::getUser(); ?>" title="OpenID"> + <?php echo ((isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == 'on') ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].OC::$WEBROOT.'/?'; echo OC_User::getUser(); ?></p> + </a> <label for="identity">Authorized</label> <input type="text" name="identity" id="identity" value="<?php echo $_['identity']; ?>" placeholder="OpenID provider" title="Wordpress, Identi.ca, Launchpad, …" /> </fieldset> |