diff --git a/apps/user_openid/templates/settings.php b/apps/user_openid/templates/settings.php
index 74f40fa3c101f1ed80716f755ef3a6729549797a..ffcd10e0b9960a9b3f1701b187fe61a938294bc0 100644
--- a/apps/user_openid/templates/settings.php
+++ b/apps/user_openid/templates/settings.php
@@ -1,8 +1,8 @@
 <form id="openidform">
 	<fieldset class="personalblock">
-		<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="<?php echo $l->t('you can authenticate to other sites with this address');?>" />
-		<label for="identity"><?php echo $l->t('Authorized');?></label>
-		<input type="text" name="identity" id="identity" value="<?php echo $_['identity']; ?>" placeholder="OpenID <?php echo $l->t('provider');?>" title="<?php echo $l->t('Wordpress, Identi.ca, Launchpad, &hellip;');?>" />
+		<strong>OpenID</strong>
+		<?php echo ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].OC::$WEBROOT.'/?'; echo OC_User::getUser(); ?><br /><em><?php echo $l->t('you can authenticate to other sites with this address');?></em><br />
+		<label for="identity"><?php echo $l->t('Authorized OpenID provider');?></label>
+		<input type="text" name="identity" id="identity" value="<?php echo $_['identity']; ?>" placeholder="<?php echo $l->t('Your address at Wordpress, Identi.ca, &hellip;');?>" />
 	</fieldset>
 </form>
diff --git a/settings/templates/personal.php b/settings/templates/personal.php
index 67e647ce92644b43e1558c84776850c0dfdaf6b3..decda043b8a4848fd27945d5d71115c79473aa10 100644
--- a/settings/templates/personal.php
+++ b/settings/templates/personal.php
@@ -32,8 +32,9 @@
 </form>
 
 <p class="personalblock">
-	<label for="webdav"><strong>WebDAV</strong></label>
-	<input id="webdav" type="text" value="<?php echo ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].OC::$WEBROOT.'/files/webdav.php'; ?>" title="<?php echo $l->t('use this address to connect to your ownCloud in your file manager');?>" />
+	<strong>WebDAV</strong>
+	<?php echo ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].OC::$WEBROOT.'/files/webdav.php'; ?><br />
+	<em><?php echo $l->t('use this address to connect to your ownCloud in your file manager');?></em>
 </p>
 
 <?php foreach($_['forms'] as $form){