summaryrefslogtreecommitdiff
path: root/web-ui
diff options
context:
space:
mode:
authorAnike Arni <aarni@thoughtworks.com>2017-02-01 16:07:37 -0200
committerAnike Arni <aarni@thoughtworks.com>2017-02-01 16:07:37 -0200
commitc141c30b068e91f58b0c64649462589f7442a2df (patch)
treeb7d6202a866ae1778f24cb098d0c5039ccb9d728 /web-ui
parent66787ad7b6e7dc777343f36519bcfa92e8bd0f1c (diff)
[#922] Create route for account recovery
with @tayanefernandes
Diffstat (limited to 'web-ui')
-rw-r--r--web-ui/app/account_recovery.html9
-rw-r--r--web-ui/app/js/account_recovery.js0
-rw-r--r--web-ui/config/copy-webpack.js1
-rw-r--r--web-ui/webpack.config.js1
4 files changed, 11 insertions, 0 deletions
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 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>$account_email - Pixelated Account Recovery</title>
+ </head>
+ <body>
+ Hello!!! :)
+ </body>
+</html>
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
--- /dev/null
+++ b/web-ui/app/js/account_recovery.js
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' },