From c141c30b068e91f58b0c64649462589f7442a2df Mon Sep 17 00:00:00 2001 From: Anike Arni Date: Wed, 1 Feb 2017 16:07:37 -0200 Subject: [#922] Create route for account recovery with @tayanefernandes --- web-ui/app/account_recovery.html | 9 +++++++++ web-ui/app/js/account_recovery.js | 0 2 files changed, 9 insertions(+) create mode 100644 web-ui/app/account_recovery.html create mode 100644 web-ui/app/js/account_recovery.js (limited to 'web-ui/app') diff --git a/web-ui/app/account_recovery.html b/web-ui/app/account_recovery.html new file mode 100644 index 00000000..448f5ea8 --- /dev/null +++ b/web-ui/app/account_recovery.html @@ -0,0 +1,9 @@ + + + + $account_email - Pixelated Account Recovery + + + Hello!!! :) + + diff --git a/web-ui/app/js/account_recovery.js b/web-ui/app/js/account_recovery.js new file mode 100644 index 00000000..e69de29b -- cgit v1.2.3 From 50efd8f59b814bc27e870ff3b09372b0d717b926 Mon Sep 17 00:00:00 2001 From: Anike Arni Date: Wed, 1 Feb 2017 16:41:11 -0200 Subject: [#922] Add react with @tayanefernandes --- web-ui/app/account_recovery.html | 5 +++-- web-ui/app/js/account_recovery.js | 7 +++++++ 2 files changed, 10 insertions(+), 2 deletions(-) (limited to 'web-ui/app') diff --git a/web-ui/app/account_recovery.html b/web-ui/app/account_recovery.html index 448f5ea8..407f5907 100644 --- a/web-ui/app/account_recovery.html +++ b/web-ui/app/account_recovery.html @@ -1,9 +1,10 @@ - $account_email - Pixelated Account Recovery + Pixelated Account Recovery - Hello!!! :) +
+ diff --git a/web-ui/app/js/account_recovery.js b/web-ui/app/js/account_recovery.js index e69de29b..a136b261 100644 --- a/web-ui/app/js/account_recovery.js +++ b/web-ui/app/js/account_recovery.js @@ -0,0 +1,7 @@ +import React from 'react' +import { render } from 'react-dom' + +render( +

Hello, world!

, + document.getElementById('root') +); -- cgit v1.2.3 From caa8a4fcf7bf7ddd1c78f8c4e60088d72cecb717 Mon Sep 17 00:00:00 2001 From: Anike Arni Date: Wed, 1 Feb 2017 18:00:08 -0200 Subject: [#922] Add react tests with @tayanefernandes --- web-ui/app/js/account_recovery.js | 3 ++- web-ui/app/js/account_recovery/page.js | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 web-ui/app/js/account_recovery/page.js (limited to 'web-ui/app') diff --git a/web-ui/app/js/account_recovery.js b/web-ui/app/js/account_recovery.js index a136b261..02183574 100644 --- a/web-ui/app/js/account_recovery.js +++ b/web-ui/app/js/account_recovery.js @@ -1,7 +1,8 @@ import React from 'react' import { render } from 'react-dom' +import Page from 'js/account_recovery/page' render( -

Hello, world!

, + , document.getElementById('root') ); diff --git a/web-ui/app/js/account_recovery/page.js b/web-ui/app/js/account_recovery/page.js new file mode 100644 index 00000000..e400dfae --- /dev/null +++ b/web-ui/app/js/account_recovery/page.js @@ -0,0 +1,5 @@ +import React from 'react' + +const Page = () =>

Hello world

; + +export default Page -- cgit v1.2.3