blob: d3107c5c712856e4f0a1315ca4009c7f14db64ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.
var Constants = require('../utils/constants.jsx');
export default class ChooseAuthPage extends React.Component {
constructor(props) {
super(props);
this.state = {};
}
render() {
var buttons = [];
if (this.props.services.indexOf(Constants.GITLAB_SERVICE) !== -1) {
buttons.push(
<a
className='btn btn-custom-login gitlab btn-full'
href='#'
onClick={
function clickGit(e) {
e.preventDefault();
this.props.updatePage('service', Constants.GITLAB_SERVICE);
}.bind(this)
}
>
<span className='icon' />
<span>Create new team with GitLab Account</span>
</a>
);
}
if (this.props.services.indexOf(Constants.EMAIL_SERVICE) !== -1) {
buttons.push(
<a
className='btn btn-custom-login email btn-full'
href='#'
onClick={
function clickEmail(e) {
e.preventDefault();
this.props.updatePage('email', '');
}.bind(this)
}
>
<span className='fa fa-envelope' />
<span>Create new team with email address</span>
</a>
);
}
if (buttons.length === 0) {
buttons = <span>No sign-up methods configured, please contact your system administrator.</span>;
}
return (
<div>
{buttons}
<div className='form-group margin--extra-2x'>
<span><a href='/find_team'>{'Find my team'}</a></span>
</div>
</div>
);
}
}
ChooseAuthPage.defaultProps = {
services: []
};
ChooseAuthPage.propTypes = {
services: React.PropTypes.array,
updatePage: React.PropTypes.func
};
|