fix some details in Personal
This commit is contained in:
parent
6e30ade0b3
commit
970888b92d
|
@ -1,6 +1,9 @@
|
||||||
<form id="openidform">
|
<form id="openidform">
|
||||||
<fieldset class="personalblock">
|
<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>
|
<label for="identity">Authorized</label>
|
||||||
<input type="text" name="identity" id="identity" value="<?php echo $_['identity']; ?>" placeholder="OpenID provider" title="Wordpress, Identi.ca, Launchpad, …" />
|
<input type="text" name="identity" id="identity" value="<?php echo $_['identity']; ?>" placeholder="OpenID provider" title="Wordpress, Identi.ca, Launchpad, …" />
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
|
@ -26,7 +26,9 @@
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<p class="personalblock">
|
<p class="personalblock">
|
||||||
<strong>WebDAV</strong> <?php echo ((isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == 'on') ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].$WEBROOT.'/files/webdav.php'; ?>
|
<strong>WebDAV</strong> <a href="<?php echo ((isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == 'on') ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].OC::$WEBROOT.'/files/webdav.php'; ?>" title="webdav">
|
||||||
|
<?php echo ((isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == 'on') ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].OC::$WEBROOT.'/files/webdav.php'; ?>
|
||||||
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<?php foreach($_['forms'] as $form){
|
<?php foreach($_['forms'] as $form){
|
||||||
|
|
Loading…
Reference in New Issue