mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
- Split login_buttons.html and login_buttons.js into multiple files - Specifically, make it easier to reason about the display of loginButtons whether it is in dropdown mode or not - Split templates into subtemplates to make it easier to read the login button .html files as "tables of contents" - Introduce Meteor._loginButtonsSession, which makes it easier to access internal session fields for loginButtons - Unify code that calls the various Meteor.loginWithFoo() functions Breaking change: rename "configureLoginServicesDialogForFoo" to "configureLoginServiceDialogForFoo" (in packages such as accounts-facebook)
17 lines
499 B
HTML
17 lines
499 B
HTML
<template name="configureLoginServiceDialogForGithub">
|
|
<p>
|
|
First, you'll need to get a Github Client ID. Follow these steps:
|
|
</p>
|
|
<ol>
|
|
<li>
|
|
Visit <a href="https://github.com/settings/applications/new" target="blank">https://github.com/settings/applications/new</a>
|
|
</li>
|
|
<li>
|
|
Set Main URL to to: <span class="url">{{siteUrl}}</span>
|
|
</li>
|
|
<li>
|
|
Set Callback URL to: <span class="url">{{siteUrl}}_oauth/github?close</span>
|
|
</li>
|
|
</ol>
|
|
</template>
|