Files
meteor/packages/accounts-github/github_configure.html
Avital Oliver 147ef71195 Large refactor of accounts-ui
- 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)
2012-10-08 19:38:20 -07:00

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>