Created
July 22, 2016 09:45
-
-
Save nul800sebastiaan/e4fbb6e3b25f62ac6ba5ab88622cc49f to your computer and use it in GitHub Desktop.
Fix "Link to account" button in Umbraco 7.5.0-beta / 7.5.0-beta2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form ng-if="login.linkedProviderKey == undefined" method="POST" name="externalLoginForm" | |
| action="{{externalLinkLoginFormAction}}" id="oauthloginform" name="oauthloginform"> | |
| <input type="hidden" name="provider" value="{{login.authType}}" /> | |
| <button class="btn btn-block btn-social" | |
| ng-class="login.properties.SocialStyle" | |
| id="{{login.authType}}" | |
| onclick="document.forms.oauthloginform.submit();"> | |
| <i class="fa" ng-class="login.properties.SocialIcon"></i> | |
| <localize key="defaultdialogs_linkYour">Link your</localize> {{login.caption}} <localize key="defaultdialogs_account">account</localize> | |
| </button> | |
| </form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment