Commit c3b50026da8c3e43d6c363a76833c06a034fb0b7
1 parent
870b1032
Added social media icons and create account link
Not functional, only layout Signed-off-by: Carlos Coêlho <carlospecter@gmail.com> Signed-off-by: Sabryna Sousa <sabryna.sousa1323@gmail.com>
Showing
3 changed files
with
24 additions
and
0 deletions
Show diff stats
src/app/login/login.html
| ... | ... | @@ -23,4 +23,24 @@ |
| 23 | 23 | </div> |
| 24 | 24 | <button type="submit" class="btn btn-default btn-block" ng-click="vm.login()">{{"auth.form.login_button" | translate}}</button> |
| 25 | 25 | </form> |
| 26 | + <div class="text-center"> | |
| 27 | + <span>{{"auth.social.connectWith" | translate}}</span> | |
| 28 | + | |
| 29 | + <div id="oauth-block"> | |
| 30 | + <span class="fa-stack fa-lg"> | |
| 31 | + <i class="fa fa-circle fa-stack-2x"></i> | |
| 32 | + <i class="fa fa-facebook fa-stack-1x fa-inverse"></i> | |
| 33 | + </span> | |
| 34 | + <span class="fa-stack fa-lg"> | |
| 35 | + <i class="fa fa-circle fa-stack-2x"></i> | |
| 36 | + <i class="fa fa-twitter fa-stack-1x fa-inverse"></i> | |
| 37 | + </span> | |
| 38 | + <span class="fa-stack fa-lg"> | |
| 39 | + <i class="fa fa-circle fa-stack-2x"></i> | |
| 40 | + <i class="fa fa-google-plus fa-stack-1x fa-inverse"></i> | |
| 41 | + </span> | |
| 42 | + </div> | |
| 43 | + | |
| 44 | + <a href="">{{"auth.createAccount" | translate}}</a> | |
| 45 | + </div> | |
| 26 | 46 | </div> | ... | ... |
src/languages/en.json
| ... | ... | @@ -26,6 +26,8 @@ |
| 26 | 26 | "auth.form.keepLoggedIn": "Keep me logged in", |
| 27 | 27 | "auth.form.forgotPasswd": "Forgot your password?", |
| 28 | 28 | "auth.form.login_button": "Login", |
| 29 | + "auth.social.connectWith": "Connect with:", | |
| 30 | + "auth.createAccount": "Create account", | |
| 29 | 31 | "navbar.content_viewer_actions.new_post": "New Post", |
| 30 | 32 | "notification.error.default.message": "Something went wrong!", |
| 31 | 33 | "notification.error.default.title": "Oops...", | ... | ... |
src/languages/pt.json
| ... | ... | @@ -26,6 +26,8 @@ |
| 26 | 26 | "auth.form.keepLoggedIn": "Continuar logado", |
| 27 | 27 | "auth.form.forgotPasswd": "Esqueceu sua senha?", |
| 28 | 28 | "auth.form.login_button": "Login", |
| 29 | + "auth.social.connectWith": "Conectar com:", | |
| 30 | + "auth.createAccount": "Criar conta", | |
| 29 | 31 | "navbar.content_viewer_actions.new_post": "Novo Artigo", |
| 30 | 32 | "notification.error.default.message": "Algo deu errado!", |
| 31 | 33 | "notification.error.default.title": "Oops...", | ... | ... |