-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0a9c414
commit 3bdaa0c
Showing
3 changed files
with
96 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
# frozen_string_literal: true | ||
|
||
class HomeController < ApplicationController | ||
layout "home" | ||
layout "home", only: %i[index] | ||
layout "no_columns", only: %i[terms] | ||
allow_unauthenticated_access | ||
|
||
def index; end | ||
|
||
def terms; end | ||
end |
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,90 @@ | ||
.container | ||
%h1.title.has-text-centered Our terms | ||
.content | ||
%h1#terms-of-service-for-retromeet Terms of Service for RetroMeet | ||
%p | ||
%strong> Effective Date | ||
\: November 8, 2024 | ||
%p Welcome to RetroMeet, an open-source dating application. By accessing or using the RetroMeet service (the “Service”), you agree to comply with and be bound by these Terms of Service (“Terms”). These Terms also incorporate by reference RetroMeet’s Privacy Policy, which governs how we collect, use, and share your personal data. | ||
%p | ||
%strong If you do not agree with these Terms or the Privacy Policy, do not use the Service. | ||
%h2#1-acceptance-of-terms | ||
1. | ||
%strong Acceptance of Terms | ||
%p By creating an account and using the Service, you affirm that you are at least 18 years of age and agree to these Terms and the Privacy Policy. If you are not 18 or older, you are prohibited from using the Service. | ||
%h2#2-eligibility | ||
2. | ||
%strong Eligibility | ||
%ul | ||
%li | ||
%strong> Minimum Age Requirement | ||
\: The Service is available only to individuals who are 18 years of age or older. By registering for an account, you represent and warrant that you meet this age requirement. | ||
%li | ||
%strong> Compliance with Laws | ||
\: Use of the Service is void where prohibited by law. | ||
%h2#3-user-responsibilities | ||
3. | ||
%strong User Responsibilities | ||
%h3#the-user-agrees-not-to The user agrees not to: | ||
%ol | ||
%li Misrepresent your identity, age, current or previous positions, qualifications, or affiliations with a person or entity. | ||
%li Use the Service in a way that interferes with, disrupts, or negatively affects the platform, the servers, or the networks connected to the Service. | ||
%li Harass, bully, stalk, intimidate, assault, defame, harm, or otherwise mistreat any person. | ||
%li Create a new account after suspension or termination of a previous account, unless you receive express permission from RetroMeet. | ||
%li Upload any content that is not owned by you or for which you do not have proper authorization. | ||
%li Upload any images that include the image or likeness of other people without their express consent. | ||
%h3#additional-responsibilities Additional Responsibilities: | ||
%ul | ||
%li | ||
%strong> Content and Conduct | ||
\: Users are responsible for any content they create, share, or interact with on the Service. Content must not violate applicable laws, these Terms, or RetroMeet’s Privacy Policy. | ||
%li | ||
%strong> Security | ||
\: Users must maintain the confidentiality of their login credentials and notify RetroMeet of any unauthorized account use. | ||
%h2#4-no-background-checks | ||
4. | ||
%strong No Background Checks | ||
%p RetroMeet does not conduct criminal background checks or identity verification on its members. Users are encouraged to exercise caution and good judgment when interacting with others on the Service. | ||
%h2#5-rights-reserved-by-retromeet | ||
5. | ||
%strong Rights Reserved by RetroMeet | ||
%p RetroMeet reserves the right to: | ||
%ul | ||
%li Remove any content that, in its sole discretion, violates these Terms or is harmful to the Service or other users. | ||
%li Suspend or terminate any user’s access to the Service for violations of these Terms or for actions that jeopardize the integrity or security of the Service. | ||
%h2#6-license-and-open-source-notice | ||
6. | ||
%strong License and Open Source Notice | ||
%p | ||
RetroMeet is an open-source project licensed under the | ||
= succeed "." do | ||
%a{:href => "https://tldrlegal.com/license/gnu-affero-general-public-license-v3-(agpl-3.0)"} GNU Affero General Public License (AGPL) v3.0 | ||
The full source code of RetroMeet is available at | ||
= succeed "." do | ||
%a{:href => "https://github.com/retromeet/"} https://github.com/retromeet/ | ||
%h2#7-disclaimer-of-warranties-and-limitation-of-liability | ||
7. | ||
%strong Disclaimer of Warranties and Limitation of Liability | ||
%ul | ||
%li | ||
%strong> “As-Is” Basis | ||
\: The Service is provided on an “as-is” and “as-available” basis. RetroMeet, its developers, contributors, and partners make no representations or warranties of any kind, express or implied, including, but not limited to, implied warranties of merchantability, fitness for a particular purpose, or non-infringement. | ||
%li | ||
%strong> Limitation of Liability | ||
\: To the extent permitted by law, RetroMeet, its developers, contributors, and partners shall not be liable for any damages, whether direct, indirect, incidental, special, consequential, or exemplary, arising out of or in connection with your use of the Service or any content available through the Service. | ||
%li | ||
%strong> No Guarantee | ||
\: RetroMeet does not guarantee that the Service will be uninterrupted, secure, or error-free. | ||
%h2#8-changes-to-the-terms | ||
8. | ||
%strong Changes to the Terms | ||
%p RetroMeet may update these Terms from time to time. Significant changes will be communicated through the Service or by other means as appropriate. Continued use of the Service after changes are posted constitutes acceptance of the new Terms. | ||
%h2#9-contact-information | ||
9. | ||
%strong Contact Information | ||
%p If you have questions or need further information about these Terms, please contact us at [Your Contact Information]. | ||
%hr/ | ||
%p | ||
These Terms are provided under a | ||
= succeed "." do | ||
%a{:href => "https://creativecommons.org/licenses/by-sa/4.0/"} Creative Commons Attribution-ShareAlike 4.0 International License (CC BY-SA 4.0) |
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