mirror of https://gitlab.com/ecentrics/concordia
Apostolos Fanakis
4 years ago
2 changed files with 41 additions and 15 deletions
@ -0,0 +1,21 @@ |
|||||
|
import React from 'react'; |
||||
|
import { Container, Header, Icon } from 'semantic-ui-react'; |
||||
|
import { Link } from 'react-router-dom'; |
||||
|
|
||||
|
const PollGuestView = () => ( |
||||
|
<Container id="topic-poll-guest-view-container" textAlign="center"> |
||||
|
<Header as="h3" icon textAlign="center"> |
||||
|
<Icon name="signup" /> |
||||
|
<Header.Content> |
||||
|
Only registered users are able to vote in polls. |
||||
|
<Header.Subheader> |
||||
|
You can register in the |
||||
|
<Link to="/auth/register">signup</Link> |
||||
|
page. |
||||
|
</Header.Subheader> |
||||
|
</Header.Content> |
||||
|
</Header> |
||||
|
</Container> |
||||
|
); |
||||
|
|
||||
|
export default PollGuestView; |
Loading…
Reference in new issue