RegisterResult.js 881 Bytes
Newer Older
1 2 3 4
import React from 'react';
import { Button } from 'antd';
import { Link } from 'dva/router';
import Result from '../../components/Result';
ddcat1115's avatar
ddcat1115 committed
5 6
import styles from './RegisterResult.less';

7
const actions = (
ddcat1115's avatar
ddcat1115 committed
8
  <div className={styles.actions}>
afc163's avatar
afc163 committed
9 10
    <a href=""><Button size="large" type="primary">查看邮箱</Button></a>
    <Link to="/"><Button size="large">返回首页</Button></Link>
11 12 13
  </div>
);

14
export default ({ location }) => (
ddcat1115's avatar
ddcat1115 committed
15
  <Result
ddcat1115's avatar
ddcat1115 committed
16
    className={styles.registerResult}
ddcat1115's avatar
ddcat1115 committed
17
    type="success"
ddcat1115's avatar
ddcat1115 committed
18 19 20 21 22
    title={
      <div className={styles.title}>
        你的账户{location.state ? location.state.account : 'AntDesign@example.com'} 注册成功
      </div>
    }
ddcat1115's avatar
ddcat1115 committed
23 24
    description="激活邮件已发送到你的邮箱中,邮件有效期为24小时。请及时登录邮箱,点击邮件中的链接激活帐户。"
    actions={actions}
ddcat1115's avatar
ddcat1115 committed
25
    style={{ marginTop: 56 }}
ddcat1115's avatar
ddcat1115 committed
26
  />
27
);