diff --git a/smart-hut/public/title8.png b/smart-hut/public/title8.png new file mode 100644 index 0000000..0d3c395 Binary files /dev/null and b/smart-hut/public/title8.png differ diff --git a/smart-hut/src/App.js b/smart-hut/src/App.js index 7ea3911..cadc1db 100644 --- a/smart-hut/src/App.js +++ b/smart-hut/src/App.js @@ -9,6 +9,7 @@ import ForgotPass from "./views/Forgot-password"; import ChangePass from "./views/Forgot-pass-reset"; import ConfirmForgotPasswrod from "./views/ConfirmForgotPassword"; import ConfirmRegistration from "./views/ConfirmRegistration"; +import ConfirmResetPassword from "./views/ConfirmResetPassword"; import Instruction from "./views/Instruction"; import queryString from "query-string"; @@ -134,6 +135,9 @@ class App extends Component { + + + diff --git a/smart-hut/src/views/ConfirmResetPassword.js b/smart-hut/src/views/ConfirmResetPassword.js new file mode 100644 index 0000000..6e09fc8 --- /dev/null +++ b/smart-hut/src/views/ConfirmResetPassword.js @@ -0,0 +1,80 @@ +import React, { Component } from "react"; +import HomeNavbar from "./../components/HomeNavbar"; +import { Image, Divider, Message, Grid } from "semantic-ui-react"; + +class Paragraph extends Component { + state = { visible: true }; + + handleDismiss = () => { + this.setState({ visible: false }); + + setTimeout(() => { + this.setState({ visible: true }); + }, 2000); + }; + + render() { + if (this.state.visible) { + return ( + + + Congratulations! + + Your password has been succesffuly + successfully reset + + ); + } + + return ( +

+
+ The message will return in 2s +
+
+

+ ); + } +} + +const MessageReg = () => ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +); + +export default class ConfirmResetPassword extends Component { + render() { + return ; + } +}