diff --git a/src/components/structures/auth/ForgotPassword.js b/src/components/structures/auth/ForgotPassword.js
index 91ed1aa3ae..42ca23256c 100644
--- a/src/components/structures/auth/ForgotPassword.js
+++ b/src/components/structures/auth/ForgotPassword.js
@@ -200,7 +200,8 @@ module.exports = React.createClass({
'underlinedServerName': () => {
return
+ tooltip={this.props.serverConfig.hsUrl}
+ >
{this.props.serverConfig.hsName}
;
},
diff --git a/src/components/views/auth/PasswordLogin.js b/src/components/views/auth/PasswordLogin.js
index 80716b766c..825bffdc84 100644
--- a/src/components/views/auth/PasswordLogin.js
+++ b/src/components/views/auth/PasswordLogin.js
@@ -284,8 +284,9 @@ export default class PasswordLogin extends React.Component {
signInToText = _t('Sign in to your Matrix account on ', {}, {
'underlinedServerName': () => {
return
+ class="mx_Login_underlinedServerName"
+ tooltip={this.props.serverConfig.hsUrl}
+ >
{this.props.serverConfig.hsName}
;
},
diff --git a/src/components/views/auth/RegistrationForm.js b/src/components/views/auth/RegistrationForm.js
index be0142e6c6..b1af6ea42c 100644
--- a/src/components/views/auth/RegistrationForm.js
+++ b/src/components/views/auth/RegistrationForm.js
@@ -522,7 +522,8 @@ module.exports = React.createClass({
'underlinedServerName': () => {
return
+ tooltip={this.props.serverConfig.hsUrl}
+ >
{this.props.serverConfig.hsName}
;
},