diff --git a/src/routes/open/components/SafeNameForm/index.jsx b/src/routes/open/components/SafeNameForm/index.jsx new file mode 100644 index 00000000..71f506b7 --- /dev/null +++ b/src/routes/open/components/SafeNameForm/index.jsx @@ -0,0 +1,21 @@ +// @flow +import * as React from 'react' +import Paragraph from '~/components/layout/Paragraph' +import OpenPaper from '../OpenPaper' + +const SafeNameForm = () => () => ( + + + This setup will create a Safe with one or more owners. Optionally give the Safe a local name. + By continuing you consent with the terms of use and privacy policy. + + + ● I understand that my funds are held securely in my Safe. They cannot be accessed by Gnosis. + + + ● My Safe is a smart contract on the Ethereum blockchain. + + +) + +export default SafeNameForm