Skip to content

Commit 0f175c3

Browse files
[Api Node] Add ToS and privacy policy links (#3511)
1 parent 8d4263c commit 0f175c3

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

src/components/dialog/content/SignInContent.vue

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,22 @@
6161
<!-- Terms -->
6262
<p class="text-xs text-muted mt-8">
6363
{{ t('auth.login.termsText') }}
64-
<span class="text-blue-500 cursor-pointer">{{
65-
t('auth.login.termsLink')
66-
}}</span>
64+
<a
65+
href="https://www.comfy.org/terms-of-service"
66+
target="_blank"
67+
class="text-blue-500 cursor-pointer"
68+
>
69+
{{ t('auth.login.termsLink') }}
70+
</a>
6771
{{ t('auth.login.andText') }}
68-
<span class="text-blue-500 cursor-pointer">{{
69-
t('auth.login.privacyLink')
70-
}}</span
71-
>.
72+
<a
73+
href="https://www.comfy.org/privacy-policy"
74+
target="_blank"
75+
class="text-blue-500 cursor-pointer"
76+
>
77+
{{ t('auth.login.privacyLink') }}
78+
</a>
79+
.
7280
</p>
7381
</div>
7482
</template>

0 commit comments

Comments
 (0)