Skip to content

Commit

Permalink
Merge pull request #1167 from jvkousthub/main
Browse files Browse the repository at this point in the history
Social Media login fixed
  • Loading branch information
SurajPratap10 authored Oct 7, 2024
2 parents c69ffbe + 4ff41d5 commit 57f6188
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions views/login.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@

<head>
<style>
.google-logo,
.facebook-logo,
.twitter-logo {
width: 50px;
height: auto;
}
#captchaicon{
cursor: pointer;
}
Expand Down Expand Up @@ -108,15 +115,15 @@
<h2>Sign In using</h2>
<div class="signin-opt-icons">
<!-- signin using google -->
<a href="/auth/google" class="google-button tooltip" aria-label="sign in with google">
<a href="/auth/google" class="google-button tooltip google-logo" aria-label="sign in with google">
<img
src="https://cdn-icons-png.flaticon.com/512/300/300221.png"

/>
</a>

<!-- signin using facebook -->
<a href="#" class="tooltip" aria-label="sign in with facebook">
<a href="#" class="tooltip facebook-logo" aria-label="sign in with facebook">
<!-- Please do the OAuth for facebook here, after completion, delete this comment -->
<img
src="https://cdn-icons-png.flaticon.com/512/733/733547.png"
Expand All @@ -126,7 +133,7 @@

<!-- signin using twitter -->

<a href="#" class="tooltip" aria-label="sign in with twitter">
<a href="#" class="tooltip twitter-logo" aria-label="sign in with twitter">
<!-- Please do the OAuth for twitter here, after completion, delete this comment -->
<img
src="https://cdn-icons-png.flaticon.com/512/3256/3256013.png"
Expand Down

0 comments on commit 57f6188

Please sign in to comment.