Created
July 22, 2016 09:44
-
-
Save nul800sebastiaan/f5276df17922dc84dfb79cb86ac8306c to your computer and use it in GitHub Desktop.
Fix "Link to account" button in Umbraco 7.4.x
This file contains 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> | |
Link your {{login.caption}} account | |
</button> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment