How to set up the verification portal for implementation
Overview
Prerequisite: Get details on functions used for certificate verification
<div style={{paddingBottom: "3rem", paddingTop: "3rem"}}>
<Switch>
<Route exact path={"/"} component={Home}/>
<Route exact path={config.urlPath + "/login"} component={Login}/>
<Route exact path={"/side-effects"} component={SideEffects}/>
<Route exact path={"/feedback"} component={SideEffects}/>
<PrivateRoute exact path={"/feedback/verify"} component={SubmitSymptomsForm} role={RECIPIENT_ROLE} clientId={RECIPIENT_CLIENT_ID}/>
<Route exact path={"/dashboard"} component={Dashboard}/>
<Route exact path={"/verify-certificate"} component={VerifyCertificate}/>
<Route exact path={"/learn"} component={Learn}/>
<Route exact path={"/not-found"} component={PageNotFound}/>
</Switch>
</div>Verification portal home page
How to update the verification page:
Verification confirmation page
How to update the vaccination confirmation details:
Last updated