blob: 4552db189264ef7b236c628e4d8944b7a28f209d (
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
|
import React from 'react'
import Login from './login'
import Center from './center'
import Splash from './splash'
import Area from './area'
import { Glyphicon } from 'react-bootstrap'
import App from 'app'
export default class GreeterPanel extends React.Component {
constructor(props) {
super(props)
}
newAccount() {
App.show('wizard')
}
render () {
return <div>
<Splash speed="slow" mask={false} />
<Center width="400">
<Area position="top" type="light" className="greeter">
<Login {...this.props} rememberAllowed={false}/>
</Area>
<Area position="bottom" type="dark" className="greeter">
<Glyphicon glyph="user" />
<a href="#" onClick={this.newAccount.bind(this)}>Create a new account...</a>
</Area>
</Center>
</div>
}
}
|