Created
August 1, 2019 18:24
-
-
Save sudikrt/d728beacc9b27b6c38a797637608ba09 to your computer and use it in GitHub Desktop.
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
<aura:component> | |
<!--- Your component --> | |
</aura:component> |
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
<aura:application access="GLOBAL" extends="ltng:outApp" implements="ltng:allowGuestAccess"> | |
<aura:dependency resource="c:ChangePassword"/> | |
</aura:application> |
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
<apex:page applybodyTag="false" sidebar="false" showHeader="false" standardStylesheets="false"> | |
<html xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"> | |
<head> | |
<apex:includeLightning /> | |
</head> | |
<body> | |
<div class="slds"> | |
<div class="slds-m-around_x-small" id="lightningHolder"> | |
</div> | |
</div> | |
</body> | |
<script> | |
$Lightning.use ('c:LightningComponentApp', function () { | |
$Lightning.createComponent ( | |
'c:ChangePassword', | |
{ | |
}, | |
'lightningHolder', | |
function (comp) { | |
} | |
); | |
}); | |
</script> | |
</html> | |
</apex:page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment