diff --git a/src/pages/contacts.js b/src/pages/contacts.js deleted file mode 100644 index 26dfb82703..0000000000 --- a/src/pages/contacts.js +++ /dev/null @@ -1,176 +0,0 @@ -import React from 'react'; -import ReactGA from 'react-ga'; -import { navigateTo } from 'gatsby-link'; -import Sidebar from '../components/Sidebar'; -import SEO from '../components/SEO'; - -import './contacts.scss'; - -export default class Contact extends React.Component { - constructor(props) { - super(props); - this.state = {}; - } - - // eslint-disable-next-line react/sort-comp - static encode(data) { - const formData = new FormData(); - // eslint-disable-next-line no-restricted-syntax - for (const key of Object.keys(data)) { - formData.append(key, data[key]); - } - return formData; - } - - handleChange(e) { - this.setState({ [e.target.name]: e.target.value }); - } - - handleAttachment(e) { - this.setState({ [e.target.name]: e.target.files[0] }); - } - - handleSubmit(e) { - e.preventDefault(); - const form = e.target; - ReactGA.event({ - category: 'User', - action: 'Submit Contact Form', - }); - fetch('https://getform.io/f/897f187e-876d-42a7-b300-7c235af72e6d', { - method: 'POST', - body: Contact.encode({ - 'form-name': form.getAttribute('name'), - ...this.state, - }), - }) - .then(() => navigateTo(form.getAttribute('action'))) - .catch((error) => alert(error)); - } - - render() { - return ( -
Please your Comment here.
-当サイトで掲載している画像の著作権・肖像権等は各権利所有者に帰属致します。権利を侵害する目的ではございません。 記事の内容や掲載画像等に問題がございましたら、 - 各権利所有者様本人がコンタクトフォームからご連絡ください。確認後、対応させて頂きます。
+ 各権利所有者様本人がコンタクトフォームからご連絡ください。確認後、対応させて頂きます。当サイトからリンクやバナーなどによって他のサイトに移動された場合、移動先サイトで提供される情報、サービス等について一切の責任を負いません。
当サイトのコンテンツ・情報につきまして、可能な限り正確な情報を掲載するよう努めておりますが、誤情報が入り込んだり、情報が古くなっていることもございます。
当サイトに掲載された内容によって生じた損害等の一切の責任を負いかねますのでご了承ください。
diff --git a/src/pages/thanks.js b/src/pages/thanks.js deleted file mode 100644 index 271680c3b9..0000000000 --- a/src/pages/thanks.js +++ /dev/null @@ -1,33 +0,0 @@ -import React from 'react'; -import { Link, withPrefix } from 'gatsby'; -import Sidebar from '../components/Sidebar'; -import SEO from '../components/SEO'; - -const Thanks = () => ( -This is thank you page for form submissions
- Back to Index -