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 web-ui/config/copy-webpack.js | 1 + web-ui/webpack.config.js | 1 + 4 files changed, 11 insertions(+) create mode 100644 web-ui/app/account_recovery.html create mode 100644 web-ui/app/js/account_recovery.js (limited to 'web-ui') 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 diff --git a/web-ui/config/copy-webpack.js b/web-ui/config/copy-webpack.js index 79a5de83..1d2d11c1 100644 --- a/web-ui/config/copy-webpack.js +++ b/web-ui/config/copy-webpack.js @@ -4,6 +4,7 @@ module.exports = new CopyWebpackPlugin([ { context: 'app/', from: '404.html' }, { context: 'app/', from: 'index.html' }, { context: 'app/', from: 'sandbox.html' }, + { context: 'app/', from: 'account_recovery.html' }, { context: 'app/', from: 'css/*' }, { context: 'app/', from: 'fonts/*' }, { context: 'app/', from: 'locales/**/*' }, diff --git a/web-ui/webpack.config.js b/web-ui/webpack.config.js index 99162908..720a9a2e 100644 --- a/web-ui/webpack.config.js +++ b/web-ui/webpack.config.js @@ -6,6 +6,7 @@ var aliases = require('./config/alias-webpack'); module.exports = { entry: { app: './app/js/index.js', + recovery: './app/js/account_recovery.js', sandbox: './app/js/sandbox.js' }, node: { fs: 'empty' }, -- cgit v1.2.3