Skip to content

Commit 6585976

Browse files
authored
Merge pull request #1588 from tamo/google-oauth-verified
2 parents ee1230b + 1920978 commit 6585976

File tree

5 files changed

+6
-2
lines changed

5 files changed

+6
-2
lines changed

app.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ app.set('view engine', 'ejs')
194194
app.locals.useCDN = config.useCDN
195195
app.locals.serverURL = config.serverURL
196196
app.locals.sourceURL = config.sourceURL
197+
app.locals.privacyPolicyURL = config.privacyPolicyURL
197198
app.locals.allowAnonymous = config.allowAnonymous
198199
app.locals.allowAnonymousEdits = config.allowAnonymousEdits
199200
app.locals.permission = config.permission

lib/config/default.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ module.exports = {
3737
defaultPermission: 'editable',
3838
dbURL: '',
3939
db: {},
40+
privacyPolicyURL: '',
4041
// ssl path
4142
sslKeyPath: '',
4243
sslCertPath: '',

lib/config/environment.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ module.exports = {
3535
sessionSecret: process.env.CMD_SESSION_SECRET,
3636
sessionLife: toIntegerConfig(process.env.CMD_SESSION_LIFE),
3737
responseMaxLag: toIntegerConfig(process.env.CMD_RESPONSE_MAX_LAG),
38+
privacyPolicyURL: process.env.CMD_PRIVACY_POLICY_URL,
3839
imageUploadType: process.env.CMD_IMAGE_UPLOAD_TYPE,
3940
imgur: {
4041
clientID: process.env.CMD_IMGUR_CLIENTID

public/views/index/body.ejs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@
156156
<h6 class="social-foot">
157157
<%- __('Follow us on %s and %s.', '<a href="https://github.com/hackmdio/CodiMD" target="_blank" rel="noopener"><i class="fa fa-github"></i> GitHub</a>, <a href="https://gitter.im/hackmdio/hackmd" target="_blank" rel="noopener"><i class="fa fa-comments"></i> Gitter</a>', '<a href="https://poeditor.com/join/project/q0nuPWyztp" target="_blank" rel="noopener"><i class="fa fa-globe"></i> POEditor</a>') %>
158158
</h6>
159+
<% if(privacyPolicyURL && privacyPolicyURL.length > 0) { %><p><a href="<%- privacyPolicyURL %>"><%= __('Privacy Policy') %></a></p><% } %>
159160
</div>
160161
</div>
161162
</div>

public/views/shared/signin-modal.ejs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
</a>
4545
<% } %>
4646
<% if (authProviders.google) { %>
47-
<a href="<%- serverURL %>/auth/google" class="btn btn-lg btn-block btn-login-method btn-google">
48-
<i class="fa fa-google"></i> <%= __('Sign in via %s', 'Google') %>
47+
<a href="<%- serverURL %>/auth/google" class="btn btn-lg btn-block" style="color: #fff; background-color: #4285F4; vertical-align: middle; font-size: 14px; font-family: Roboto;">
48+
<svg aria-hidden="true" width="34" height="34" viewBox="-8 -8 34 34" style="vertical-align: middle; margin-right: 16; background-color=#fff;"><path d="M16.51 8H8.98v3h4.3c-.18 1-.74 1.48-1.6 2.04v2.01h2.6a7.8 7.8 0 002.38-5.88c0-.57-.05-.66-.15-1.18z" fill="#4285F4"></path><path d="M8.98 17c2.16 0 3.97-.72 5.3-1.94l-2.6-2a4.8 4.8 0 01-7.18-2.54H1.83v2.07A8 8 0 008.98 17z" fill="#34A853"></path><path d="M4.5 10.52a4.8 4.8 0 010-3.04V5.41H1.83a8 8 0 000 7.18l2.67-2.07z" fill="#FBBC05"></path><path d="M8.98 4.18c1.17 0 2.23.4 3.06 1.2l2.3-2.3A8 8 0 001.83 5.4L4.5 7.49a4.77 4.77 0 014.48-3.3z" fill="#EA4335"></path></svg> <%= __('Sign in via %s', 'Google') %>
4949
</a>
5050
<% } %>
5151
<% if (authProviders.saml) { %>

0 commit comments

Comments
 (0)