mirror of
https://github.com/System-End/hackatime.git
synced 2026-04-19 19:55:16 +00:00
apply a gentle coat of hand sanitizer
This commit is contained in:
parent
9d9d3d0129
commit
7bd2f0b18d
5 changed files with 8 additions and 8 deletions
|
|
@ -1,6 +1,6 @@
|
|||
<h1>Verify your email address for Hackatime</h1>
|
||||
<p>
|
||||
Hi <%= @user.display_name %>,
|
||||
Hi <%= h(@user.display_name) %>,
|
||||
</p>
|
||||
<p>
|
||||
You've requested to add <%= @verification_request.email %> to your Hackatime account.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Verify your email address for Hackatime
|
||||
|
||||
Hi <%= @user.display_name %>,
|
||||
Hi <%= h(@user.display_name) %>,
|
||||
|
||||
You've requested to add <%= @verification_request.email %> to your Hackatime account.
|
||||
Click the link below to verify this email address:
|
||||
|
|
|
|||
|
|
@ -2,17 +2,17 @@
|
|||
<%= image_tag user.avatar_url,
|
||||
size: "32x32",
|
||||
class: "rounded-full aspect-square border border-gray-300",
|
||||
alt: "#{user.username}'s avatar" if user.avatar_url %>
|
||||
alt: "#{h(user.username)}'s avatar" if user.avatar_url %>
|
||||
<span class="inline-flex items-center gap-1">
|
||||
<% if local_assigns.fetch(:show, []).include?(:slack) && user.slack_uid.present? %>
|
||||
<%= link_to "@#{user.display_name}", "https://slack.com/app_redirect?channel=#{user.slack_uid}", target: "_blank", class: "text-blue-500 hover:underline" %>
|
||||
<%= link_to "@#{h(user.display_name)}", "https://slack.com/app_redirect?channel=#{user.slack_uid}", target: "_blank", class: "text-blue-500 hover:underline" %>
|
||||
<% else %>
|
||||
<%= user.display_name %>
|
||||
<%= h(user.display_name) %>
|
||||
<% end %>
|
||||
<%# GitHub profile link - shown if :github_profile_link is in the :show array %>
|
||||
<% if github_url = user.github_profile_url # Assign to variable to avoid calling method twice %>
|
||||
<% if local_assigns.fetch(:show, []).include?(:github_profile_link) %>
|
||||
<%= link_to github_url, target: "_blank", title: "#{user.github_username}'s GitHub Profile", class: "flex items-center justify-center text-gray-400 no-underline bg-white/5 rounded px-1 transition-all duration-200 ml-1 hover:bg-white/15 hover:text-gray-200 hover:-translate-y-0.5 active:translate-y-0 active:shadow-none shadow-sm" do %>
|
||||
<%= link_to github_url, target: "_blank", title: "#{h(user.github_username)}'s GitHub Profile", class: "flex items-center justify-center text-gray-400 no-underline bg-white/5 rounded px-1 transition-all duration-200 ml-1 hover:bg-white/15 hover:text-gray-200 hover:-translate-y-0.5 active:translate-y-0 active:shadow-none shadow-sm" do %>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="14" height="14" fill="currentColor"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path></svg>
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
|
|
|||
|
|
@ -166,7 +166,7 @@
|
|||
<% if @user.github_uid.present? %>
|
||||
<div class="flex items-center gap-2 p-3 bg-gray-800 border border-gray-600 rounded">
|
||||
<span class="text-green-400">✅</span>
|
||||
<span class="text-gray-200 text-sm">Connected: <%= link_to "@#{@user.github_username}", "https://github.com/#{@user.github_username}", target: "_blank", class: "text-primary hover:text-primary/80 underline" %></span>
|
||||
<span class="text-gray-200 text-sm">Connected: <%= link_to "@#{h(@user.github_username)}", "https://github.com/#{h(@user.github_username)}", target: "_blank", class: "text-primary hover:text-primary/80 underline" %></span>
|
||||
</div>
|
||||
<% unless @user.github_access_token.present? %>
|
||||
<%= link_to "Relink GitHub Account", github_auth_path, data: { turbo: "false" },
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
<div class="container">
|
||||
<div class="content">
|
||||
<h1>Welcome, <%= @user.display_name %></h1>
|
||||
<h1>Welcome, <%= h(@user.display_name) %></h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue