mirror of
https://github.com/SrIzan10/hc-harbor.git
synced 2026-05-01 10:45:21 +00:00
14 lines
985 B
Plaintext
14 lines
985 B
Plaintext
<%= form_with model: user, url: (@is_own_settings ? my_settings_path : settings_user_path(user)), method: :patch, local: false, class: "space-y-4" do |f| %>
|
|
<div class="flex items-center gap-3">
|
|
<%= f.check_box :default_timezone_leaderboard,
|
|
checked: user.default_timezone_leaderboard,
|
|
id: "user_default_timezone_leaderboard",
|
|
class: "w-4 h-4 text-primary border-gray-600 rounded focus:ring-primary bg-gray-800" %>
|
|
<%= f.label :default_timezone_leaderboard, "Default to Timezone Leaderboard",
|
|
for: "user_default_timezone_leaderboard",
|
|
class: "text-sm text-gray-200" %>
|
|
</div>
|
|
<p class="text-xs text-gray-400">Access regional leaderboards that show users in your timezone region or specific timezone. Choose between timezone-specific, regional (UTC offset), or global competition modes.</p>
|
|
<%= f.submit "Save", class: "w-full px-4 py-2 bg-primary text-white font-medium rounded-lg transition-colors duration-200" %>
|
|
<% end %>
|