Skip to content

Commit

Permalink
added Google and Facebook as social login provider in UI
Browse files Browse the repository at this point in the history
  • Loading branch information
dstpierre committed Jul 27, 2022
1 parent 0b6031e commit 9bb9a96
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions templates/logins.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ <h2 class="title is-2">
<option value="twitter">
Twitter
</option>
<option value="google">
Google
</option>
<option value="facebook">
Facebook
</option>
</select>
</div>
</div>
Expand All @@ -28,14 +34,14 @@ <h2 class="title is-2">
<div class="field">
<label class="label">API Key</label>
<div class="control">
<input type="text" class="input" name="apikey">
<input type="text" class="input" name="apikey" required>
</div>
</div>

<div class="field">
<label class="label">API Secret</label>
<div class="control">
<input type="text" class="input" name="apisecret">
<input type="text" class="input" name="apisecret" required>
</div>
</div>

Expand Down

0 comments on commit 9bb9a96

Please sign in to comment.