({subtitle})
| 50 | } |
| 51 | |
| 52 | export function AuthHeader({subtitle}) { |
| 53 | const dark = useTheme().palette.mode === 'dark'; |
| 54 | return ( |
| 55 | <Box sx={{textAlign: 'center', mb: 0.5}}> |
| 56 | <OpenSIST props={{variant: 'h4'}} sx={{display: 'inline-block', fontWeight: 800, ...gradientTextSx(dark)}}/> |
| 57 | <Typography sx={{color: 'text.secondary', mt: 0.75, fontSize: 14}}>{subtitle}</Typography> |
| 58 | </Box> |
| 59 | ); |
| 60 | } |
| 61 | |
| 62 | const SUFFIXES = ['@shanghaitech.edu.cn', '@alumni.shanghaitech.edu.cn']; |
| 63 |
nothing calls this directly
no test coverage detected