diff --git a/client-react/src/App.tsx b/client-react/src/App.tsx
index 51f9dbbca..de4732c92 100644
--- a/client-react/src/App.tsx
+++ b/client-react/src/App.tsx
@@ -4,6 +4,7 @@ import './App.css';
import { BrowserRouter as Router, Route, Link } from "react-router-dom";
import { FirstFactor } from './pages/first-factor/first-factor';
import { SecondFactor } from './pages/second-factor/second-factor';
+import ConfirmationSent from './pages/confirmation-sent/confirmation-sent';
class App extends Component {
render() {
@@ -12,6 +13,7 @@ class App extends Component {
+
);
diff --git a/client-react/src/mail.png b/client-react/src/mail.png
new file mode 100644
index 000000000..834bfce91
Binary files /dev/null and b/client-react/src/mail.png differ
diff --git a/client-react/src/pages/confirmation-sent/confirmation-sent.module.css b/client-react/src/pages/confirmation-sent/confirmation-sent.module.css
new file mode 100644
index 000000000..41c3d5dbf
--- /dev/null
+++ b/client-react/src/pages/confirmation-sent/confirmation-sent.module.css
@@ -0,0 +1,15 @@
+
+.main {
+ padding: 2em;
+}
+
+.image {
+ width: 100%;
+}
+
+.image img {
+ width: 64px;
+ display: block;
+ margin: 2em auto;
+ text-align: center;
+}
\ No newline at end of file
diff --git a/client-react/src/pages/confirmation-sent/confirmation-sent.tsx b/client-react/src/pages/confirmation-sent/confirmation-sent.tsx
new file mode 100644
index 000000000..a394aa07e
--- /dev/null
+++ b/client-react/src/pages/confirmation-sent/confirmation-sent.tsx
@@ -0,0 +1,23 @@
+import React, { Component } from "react";
+
+import FormTemplate from '../../templates/form-template';
+
+import mail from '../../mail.png';
+
+import styles from './confirmation-sent.module.css';
+
+export default class ConfirmationSent extends Component {
+ render() {
+ return (
+
+
+
An e-mail has been sent to your address.
+
+
+
+
Please click on the link provided in the e-mail to confirm the operation.
+
+
+ )
+ }
+}
\ No newline at end of file