-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathUserModalInner.tsx
More file actions
63 lines (59 loc) · 1.83 KB
/
Copy pathUserModalInner.tsx
File metadata and controls
63 lines (59 loc) · 1.83 KB
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
import React from 'react'
import { Button } from '../button/Button'
import { Logo } from '../logo/Logo'
import { AccordionWrap } from '../accordion/AccordionWrap'
import { AccordionTab } from '../accordion/AccordionTab'
import orcidIcon from '../assets/orcid_24x24.png'
import '../header/header.scss'
export const UserModalInner: React.FC = ({}) => {
return (
<>
<div className="grid grid-center grid-column">
<Logo horizontal dark={true} width="230px" className="m-t-20" />
<h4>Sign in</h4>
</div>
<div className="grid grid-center sign-in-modal-content">
<div className="col col-3">
<div className="grid grid-center">
<Button
className="login-button"
primary
label="Google"
icon="fab fa-google"
iconSize="23px"
/>
</div>
</div>
<div className="col col-3">
<div className="grid grid-center">
<Button
className="login-button"
primary
label="ORCID"
imgSrc={orcidIcon}
/>
<AccordionWrap>
<AccordionTab
name="single"
tabId="orcid-info-accordion"
label="What is this?"
children={
<>
ORCID users are identified and connected to their
contributions and affiliations, across disciplines, borders,
and time.{' '}
<a
href="https://orcid.org/content/about-orcid"
target="_blank">
Learn more
</a>
</>
}
/>
</AccordionWrap>
</div>
</div>
</div>
</>
)
}