blob: 30a22ee2cc224882a104c0955bcd79d0580f81d1 [file] [log] [blame]
Adrien Béraudab519ff2022-05-03 15:34:48 -04001import { DialerSipRounded, GroupOutlined, RoomRounded } from '@mui/icons-material';
simon07b4eb02022-09-29 17:50:26 -04002import { Avatar, Card, CardContent, Container, Divider, List, Typography } from '@mui/material';
3
Adrien Béraud88a52442021-04-26 12:11:41 -04004import ListItemLink from '../components/ListItemLink';
5
simonfe1de722022-10-02 00:21:43 -04006export default function AccountCreationDialog() {
Adrien Béraud88a52442021-04-26 12:11:41 -04007 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">
simond47ef9e2022-09-28 22:24:28 -040015 Welcome to the Jami web node setup.
16 <br />
simon80b7b3b2022-09-28 17:50:10 -040017 Let&apos;s start by creating a new administrator account to control access to the server configuration.
Adrien Béraud88a52442021-04-26 12:11:41 -040018 </Typography>
19 </CardContent>
20
idillonfb2af5b2022-09-16 13:40:08 -040021 <List>
Adrien Béraud88a52442021-04-26 12:11:41 -040022 <ListItemLink
23 to="/newAccount/rendezVous"
simond47ef9e2022-09-28 22:24:28 -040024 icon={
25 <Avatar>
26 <RoomRounded />
27 </Avatar>
28 }
Adrien Béraud88a52442021-04-26 12:11:41 -040029 primary="Rendez-vous point"
simond47ef9e2022-09-28 22:24:28 -040030 secondary="A Rendez-vous account provides a unique space suitable to easily organize meetings"
31 />
Adrien Béraud88a52442021-04-26 12:11:41 -040032 <Divider />
33 <ListItemLink
34 to="/newAccount/jami"
simond47ef9e2022-09-28 22:24:28 -040035 icon={
36 <Avatar>
37 <GroupOutlined />
38 </Avatar>
39 }
Adrien Béraud88a52442021-04-26 12:11:41 -040040 primary="Jami account"
simond47ef9e2022-09-28 22:24:28 -040041 secondary="A pesonal communication account to join a Rendez-vous point or directly contact other Jami users"
42 />
Adrien Béraud88a52442021-04-26 12:11:41 -040043 <Divider />
44 <ListItemLink
45 to="/newAccount/sip"
simond47ef9e2022-09-28 22:24:28 -040046 icon={
47 <Avatar>
48 <DialerSipRounded />
49 </Avatar>
50 }
Adrien Béraud88a52442021-04-26 12:11:41 -040051 primary="SIP Account"
simond47ef9e2022-09-28 22:24:28 -040052 secondary="Connect with standard SIP communication providers or classic telephony services"
53 />
Adrien Béraud88a52442021-04-26 12:11:41 -040054 </List>
55 </Card>
simond47ef9e2022-09-28 22:24:28 -040056 </Container>
57 );
Adrien Béraud88a52442021-04-26 12:11:41 -040058}