-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from sparrowapp-dev/feat/added-policy-button-o…
…n-sign-in Feat: Added PrivacyPpolicy button on sign in & Register
- Loading branch information
Showing
5 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
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
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> | ||
import constants from "$lib/utils/constants"; | ||
</script> | ||
|
||
<div style="margin-bottom: 16px;"> | ||
<p style="text-align: center; margin-bottom:0px;" class="sparrow-fs-12 px-3 text-lightGray">By creating an account, you agree to receive occasional marketing emails & product updates. You may unsubscribe from these communications at any time. Please refer to our</p> | ||
|
||
<div class="w-100 d-flex align-items-center justify-content-center" > | ||
<a target="_blank" href={constants.SPARROW_TERMS_OF_SERVICE} class="sparrow-fs-14" style="font-weight:400;">Terms of Service</a> | ||
<span class="px-2 text-lightGray sparrow-fs-14" style="font-weight:400;" >&</span> | ||
<a target="_blank" href={constants.SPARROW_PRIVACY_POLICY} class="sparrow-fs-14" style="font-weight:400;">Privacy Policy</a> | ||
</div> | ||
|
||
</div> | ||
|
||
<style> | ||
a{ | ||
text-decoration: underline; | ||
color: var(--primary-btn-color); | ||
/* border-bottom: 1px solid var( --primary-color); */ | ||
font-weight: 400; | ||
} | ||
</style> |
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
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
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