blob: ae59d1b68dab61ee5868759ed42d11bae972daf2 [file] [log] [blame]
Adrien Béraudab519ff2022-05-03 15:34:48 -04001import { Container, Card, CardContent, Typography, List, Avatar, Divider } from '@mui/material';
Adrien Béraudab519ff2022-05-03 15:34:48 -04002import { DialerSipRounded, GroupOutlined, RoomRounded } from '@mui/icons-material';
Adrien Béraud88a52442021-04-26 12:11:41 -04003import ListItemLink from '../components/ListItemLink';
4
Adrien Béraud88a52442021-04-26 12:11:41 -04005export default function AccountCreationDialog(props) {
Adrien Béraud88a52442021-04-26 12:11:41 -04006
7 return (
8 <Container>
idillonfb2af5b2022-09-16 13:40:08 -04009 <Card>
Adrien Béraud88a52442021-04-26 12:11:41 -040010 <CardContent>
11 <Typography gutterBottom variant="h5" component="h2">
12 Create new account
13 </Typography>
14 <Typography variant="body2" color="textSecondary" component="p">
15 Welcome to the Jami web node setup.<br />
16 Let's start by creating a new administrator account to control access to the server configuration.
17 </Typography>
18 </CardContent>
19
idillonfb2af5b2022-09-16 13:40:08 -040020 <List>
Adrien Béraud88a52442021-04-26 12:11:41 -040021 <ListItemLink
22 to="/newAccount/rendezVous"
23 icon={<Avatar><RoomRounded /></Avatar>}
24 primary="Rendez-vous point"
25 secondary="A Rendez-vous account provides a unique space suitable to easily organize meetings" />
26 <Divider />
27 <ListItemLink
28 to="/newAccount/jami"
29 icon={<Avatar><GroupOutlined /></Avatar>}
30 primary="Jami account"
31 secondary="A pesonal communication account to join a Rendez-vous point or directly contact other Jami users" />
32 <Divider />
33 <ListItemLink
34 to="/newAccount/sip"
35 icon={<Avatar><DialerSipRounded /></Avatar>}
36 primary="SIP Account"
37 secondary="Connect with standard SIP communication providers or classic telephony services" />
38 </List>
39 </Card>
40 </Container>)
41}