-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix privacy policy and terms of service display (#7224)
- Loading branch information
Showing
3 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<script setup> | ||
import AuthenticationCardLogo from '@/Components/AuthenticationCardLogo.vue'; | ||
defineProps({ | ||
policy: String, | ||
}); | ||
</script> | ||
|
||
<template> | ||
<div class="font-sans text-gray-900 antialiased"> | ||
<div class="pt-4 bg-gray-100"> | ||
<div class="min-h-screen flex flex-col items-center pt-6 sm:pt-0"> | ||
<div> | ||
<AuthenticationCardLogo /> | ||
</div> | ||
|
||
<div | ||
class="w-full sm:max-w-2xl mt-6 p-6 bg-white shadow-md dark:shadow-gray-700 overflow-hidden sm:rounded-lg prose" | ||
v-html="policy"></div> | ||
</div> | ||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<script setup> | ||
import AuthenticationCardLogo from '@/Components/AuthenticationCardLogo.vue'; | ||
defineProps({ | ||
terms: String, | ||
}); | ||
</script> | ||
|
||
<template> | ||
<div class="font-sans text-gray-900 antialiased"> | ||
<div class="pt-4 bg-gray-100"> | ||
<div class="min-h-screen flex flex-col items-center pt-6 sm:pt-0"> | ||
<div> | ||
<AuthenticationCardLogo /> | ||
</div> | ||
|
||
<div | ||
class="w-full sm:max-w-2xl mt-6 p-6 bg-white shadow-md dark:shadow-gray-700 overflow-hidden sm:rounded-lg prose" | ||
v-html="terms"></div> | ||
</div> | ||
</div> | ||
</div> | ||
</template> |