Skip to content

Commit

Permalink
Use blade template files
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Poyigi <[email protected]>
  • Loading branch information
sampoyigi committed Feb 5, 2022
1 parent bb78dba commit 6501ac4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<li>Copy your <b>App ID</b> and <b>App Secret</b> into the fields below.</li>
<li>In your facebook app’s dashboard, on the <b>Settings</b> tab set the <b>Valid OAuth redirect URIs</b>
to <span
style="color:green"><?= $formModel->getProvider('facebook')->makeEntryPointUrl('callback') ?></span>
style="color:green">{{ $formModel->getProvider('facebook')->makeEntryPointUrl('callback') }}</span>
</li>
</ol>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<li>
In the side menu select the <b>Credentials</b> and click on <b>Create Credentials > OAuth Client ID</b>.
Choose the type as <b>Web Application</b>. Set the <b>Authorized redirect URIs</b> to
<span style="color:green"><?= $formModel->getProvider('google')->makeEntryPointUrl('callback') ?></span>
<span style="color:green">{{ $formModel->getProvider('google')->makeEntryPointUrl('callback') }}</span>
and click create. It will show you the Client ID and Client Secret which should be copied into the fields
below.
</li>
</ol>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
app.
</li>
<li>
Set <b>Website</b> to <span style="color:green"><?= URL::to('') ?></span> and <b>Callback URL</b> to
Set <b>Website</b> to <span style="color:green">{{ url()->to('') }}</span> and <b>Callback URL</b> to
<span
style="color:green"><?= $formModel->getProvider('twitter')->makeEntryPointUrl('callback') ?></span>
style="color:green">{{ $formModel->getProvider('twitter')->makeEntryPointUrl('callback') }}</span>
</li>
<li>Click <b>Create your Twitter Application</b>.</li>
<li>Copy your <b>API Key</b> and <b>API Secret</b> from the <b>API Keys</b> tab and paste them below.</li>
</ol>
</div>
</div>

0 comments on commit 6501ac4

Please sign in to comment.