setup KYC page and update funding approved email with link to KYC page

This commit is contained in:
Daniel Ternyak 2020-12-25 02:33:05 -06:00
parent a36861d063
commit 97b0cbc4b3
No known key found for this signature in database
GPG Key ID: DF212D2DC5D0E245
5 changed files with 27 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<p style="margin: 0;">
Congratulations, your proposal has been funded by the Zcash Foundation! Once an arbiter is selected by the Foundation, you'll be able to request payouts according to your grant's milestone schedule.
Congratulations, your proposal has been funded by the Zcash Foundation! Once an arbiter is selected by the Foundation, you'll be able to request payouts according to your grant's milestone schedule. <a href='https://grants.zfnd.org/kyc'>Click here</a> for instructions on documentation you need to submit before the Zcash Foundation can transfer funds.
</p>
{% if args.admin_note %}

View File

@ -37,6 +37,7 @@ const Tos = loadable(() => import('pages/tos'));
const ProposalTutorial = loadable(() => import('pages/proposal-tutorial'));
const About = loadable(() => import('pages/about'), opts);
const Privacy = loadable(() => import('pages/privacy'), opts);
const Kyc = loadable(() => import('pages/kyc'), opts);
const Contact = loadable(() => import('pages/contact'), opts);
const CodeOfConduct = loadable(() => import('pages/code-of-conduct'), opts);
const VerifyEmail = loadable(() => import('pages/email-verify'), opts);
@ -254,6 +255,18 @@ const routeConfigs: RouteConfig[] = [
},
onlyLoggedIn: false,
},
{
// Privacy page
route: {
path: '/kyc',
component: Kyc,
exact: true,
},
template: {
title: 'KYC',
},
onlyLoggedIn: false,
},
{
// Privacy page
route: {

View File

@ -0,0 +1,7 @@
import React from 'react';
import MarkdownPage from 'components/MarkdownPage';
import KYC from 'static/markdown/KYC.md';
const Kyc = () => <MarkdownPage markdown={KYC} />;
export default Kyc;

View File

@ -0,0 +1,6 @@
# KYC Policy
To execute a transfer of funds, the Zcash Foundation is legally required to comply with the requirements [described here](https://www.zfnd.org/about/aml-kyc-requirements/). Please send the following to <a href="mailto:grants@zfnd.org">grants@zfnd.org</a>, we are unable to send money until we receive this documentation:
- A photocopy of your state-issued identification (passport, drivers license, etc.).
- A filled-out form [W-9](https://www.irs.gov/pub/irs-pdf/fw9.pdf) (if US taxpayer) or [W-8BEN](https://www.irs.gov/pub/irs-pdf/fw8ben.pdf) (if nonresident alien individual), or a [W-8BEN-E](https://www.irs.gov/pub/irs-pdf/fw8bene.pdf) (if foreign corporation).

View File

@ -43,7 +43,6 @@
ul,
ol {
padding-left: 30px;
font-size: 1.05rem;
}
ul {