From 5883d42d800c7b444c59d626bcaa5abca7dc83d0 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Tue, 19 Oct 2021 10:56:52 -0300 Subject: add template from merchant backoffice --- .../src/pages/home/AuthMethodEmailSetup.tsx | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 packages/anastasis-webui/src/pages/home/AuthMethodEmailSetup.tsx (limited to 'packages/anastasis-webui/src/pages/home/AuthMethodEmailSetup.tsx') diff --git a/packages/anastasis-webui/src/pages/home/AuthMethodEmailSetup.tsx b/packages/anastasis-webui/src/pages/home/AuthMethodEmailSetup.tsx new file mode 100644 index 000000000..9aa6855fe --- /dev/null +++ b/packages/anastasis-webui/src/pages/home/AuthMethodEmailSetup.tsx @@ -0,0 +1,41 @@ +/* eslint-disable @typescript-eslint/camelcase */ +import { + encodeCrock, + stringToBytes +} from "@gnu-taler/taler-util"; +import { h, VNode } from "preact"; +import { useState } from "preact/hooks"; +import { AuthMethodSetupProps, AnastasisClientFrame, LabeledInput } from "./index"; + +export function AuthMethodEmailSetup(props: AuthMethodSetupProps): VNode { + const [email, setEmail] = useState(""); + return ( + +

+ For email authentication, you need to provide an email address. When + recovering your secret, you will need to enter the code you receive by + email. +

+
+ +
+
+ + +
+
+ ); +} -- cgit v1.2.3