summaryrefslogtreecommitdiffstats
path: root/web/react/components/login.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-07-29 19:29:41 +0500
committerAsaad Mahmood <Unknowngi@live.com>2015-07-29 19:29:41 +0500
commit5f2aa88a083f92d263e8f2a57253595071c4b904 (patch)
treecff481ab565b20289169c0effa49f657063f7af8 /web/react/components/login.jsx
parentac8706b9f742ce2935e6e9785ecd7ae7358fef0f (diff)
parent54265271fa16c624570ff89a26ae8596cf0fafc7 (diff)
downloadchat-5f2aa88a083f92d263e8f2a57253595071c4b904.tar.gz
chat-5f2aa88a083f92d263e8f2a57253595071c4b904.tar.bz2
chat-5f2aa88a083f92d263e8f2a57253595071c4b904.zip
Merge branch 'master' of https://github.com/mattermost/platform into mm-1762
Diffstat (limited to 'web/react/components/login.jsx')
-rw-r--r--web/react/components/login.jsx14
1 files changed, 5 insertions, 9 deletions
diff --git a/web/react/components/login.jsx b/web/react/components/login.jsx
index 05918650b..fe0a47777 100644
--- a/web/react/components/login.jsx
+++ b/web/react/components/login.jsx
@@ -103,13 +103,9 @@ module.exports = React.createClass({
return (
<div className="signup-team__container">
- <div>
- <span className="signup-team__name">{ teamDisplayName }</span>
- <br/>
- <span className="signup-team__subdomain">/{ teamName }/</span>
- <br/>
- <br/>
- </div>
+ <h5 className="margin--less">Sign in to:</h5>
+ <h2 className="signup-team__name">{ teamDisplayName }</h2>
+ <h2 className="signup-team__subdomain">on { config.SiteName }</h2>
<form onSubmit={this.handleSubmit}>
<div className={server_error ? 'form-group has-error' : 'form-group'}>
{ server_error }
@@ -124,13 +120,13 @@ module.exports = React.createClass({
<button type="submit" className="btn btn-primary">Sign in</button>
</div>
{ login_message }
- <div className="form-group form-group--small">
+ <div className="form-group margin--extra form-group--small">
<span><a href="/find_team">{"Find other " + strings.TeamPlural}</a></span>
</div>
<div className="form-group">
<a href={"/" + teamName + "/reset_password"}>I forgot my password</a>
</div>
- <div className="external-link">
+ <div className="margin--extra">
<span>{"Want to create your own " + strings.Team + "?"} <a href="/" className="signup-team-login">Sign up now</a></span>
</div>
</form>