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/AuthMethodSmsSetup.tsx | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 packages/anastasis-webui/src/pages/home/AuthMethodSmsSetup.tsx (limited to 'packages/anastasis-webui/src/pages/home/AuthMethodSmsSetup.tsx') diff --git a/packages/anastasis-webui/src/pages/home/AuthMethodSmsSetup.tsx b/packages/anastasis-webui/src/pages/home/AuthMethodSmsSetup.tsx new file mode 100644 index 000000000..d193f6eb7 --- /dev/null +++ b/packages/anastasis-webui/src/pages/home/AuthMethodSmsSetup.tsx @@ -0,0 +1,50 @@ +/* eslint-disable @typescript-eslint/camelcase */ +import { + encodeCrock, + stringToBytes +} from "@gnu-taler/taler-util"; +import { h, VNode } from "preact"; +import { useState, useRef, useLayoutEffect } from "preact/hooks"; +import { AuthMethodSetupProps, AnastasisClientFrame } from "./index"; + +export function AuthMethodSmsSetup(props: AuthMethodSetupProps): VNode { + const [mobileNumber, setMobileNumber] = useState(""); + const addSmsAuth = (): void => { + props.addAuthMethod({ + authentication_method: { + type: "sms", + instructions: `SMS to ${mobileNumber}`, + challenge: encodeCrock(stringToBytes(mobileNumber)), + }, + }); + }; + const inputRef = useRef(null); + useLayoutEffect(() => { + inputRef.current?.focus(); + }, []); + return ( + +
+

+ For SMS authentication, you need to provide a mobile number. When + recovering your secret, you will be asked to enter the code you + receive via SMS. +

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