diff options
author | Tayane Fernandes <tayane.rmf@gmail.com> | 2017-02-06 11:31:11 -0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-06 11:31:11 -0200 |
commit | 15725dc3eea9b7389ee22d406094bb7d22af1364 (patch) | |
tree | 2b76bc62af2e3930e624957ee9b05383db934810 /web-ui/app/js/account_recovery | |
parent | 84c5fc7871206c74bb50df2f618992b0d57ca397 (diff) | |
parent | 2a0c02295ac6b3a21047e08a0174361003f02736 (diff) |
Merge pull request #959 from pixelated/backup-email-page
Adds css and mocha
Diffstat (limited to 'web-ui/app/js/account_recovery')
-rw-r--r-- | web-ui/app/js/account_recovery/page.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/web-ui/app/js/account_recovery/page.js b/web-ui/app/js/account_recovery/page.js index e400dfae..a6be0c6e 100644 --- a/web-ui/app/js/account_recovery/page.js +++ b/web-ui/app/js/account_recovery/page.js @@ -1,5 +1,12 @@ import React from 'react' -const Page = () => <h1>Hello world</h1>; +import 'scss/account_recovery/page.scss' + +const Page = () => ( + <div className="container"> + <img src="assets/images/forgot-my-password.svg" /> + <h1>E se vocĂȘ esquecer sua senha?</h1> + </div> +); export default Page |