blob: 8d78a9fa8d4b91b387110e897cb078d6af5bbfd1 [file] [log] [blame]
pineafanf97734b2021-11-23 21:11:00 +00001import { Component } from 'react'
2import Header from '../../../Components/Header'
3
4class Failed extends Component {
5 constructor(props) {
6 super(props)
7 }
8
9 render() {
10 return (
11 <Header
12 name="Form not found"
13 subtext={<p>We could not find that form. Please let the server owners know if you believe this is an mistake.</p>}
14 gradient={["F27878", "D96B6B"]}
15 wave="web/waves/header/rsm"
16 buttons={[]}
pineafaneebe3c62022-02-11 19:46:21 +000017 fullscreen={true}
PineaFana465f352023-02-05 16:45:01 +000018 season={this.props.season}
pineafanf97734b2021-11-23 21:11:00 +000019 />
20 )
21 }
22
23}
24
25export default Failed;