blob: 31b721b76ee4c491b43ccde89316500d8a73ee8d [file] [log] [blame]
pineafanc540da92021-09-03 20:33:36 +01001import { Component } from 'react'
2import Styles from '../../styles/rsmv/rsmv.module.scss'
3
4class Failed extends Component {
5 constructor(props) {
6 super(props)
7 }
8
9 render() {
10 return (
11 <div className={Styles.container}>
12
13 <div className={Styles.ServerHeader}>
14 <h4>
15 Verification failed<br />
16 Please try again, and if the error persists please contact us at <a href="mailto:verification@clicksminuteper.net" target="_blank">verification@clicksminuteper.net</a>
17 </h4>
18 </div>
19 </div>
20 )
21 }
22
23}
24
25export default Failed;