diff --git a/app/router.js b/app/router.js index 5642a3709..f731559d9 100644 --- a/app/router.js +++ b/app/router.js @@ -91,7 +91,9 @@ AppRouter.map(function() { this.route('organization', function() { this.route('settings', function() { }); }); - this.route('terms-of-use'); + + this.route('privacy'); + this.route('terms'); }); export default AppRouter; diff --git a/app/styles/main.scss b/app/styles/main.scss index 1748fe519..565a28605 100644 --- a/app/styles/main.scss +++ b/app/styles/main.scss @@ -71,6 +71,15 @@ ul { margin: 0; padding: 0; list-style-type: none; + + &.bulleted { + list-style-type: disc; + margin-left: 30px; + + li { + margin-bottom: 0.5em; + } + } } .border-top { @@ -171,3 +180,8 @@ p.subtext { line-height: 2em; } } + +.legal { + margin: auto; + max-width: 600px; +} diff --git a/app/templates/components/donation/donation-container.hbs b/app/templates/components/donation/donation-container.hbs index 625183207..c6ac0862d 100644 --- a/app/templates/components/donation/donation-container.hbs +++ b/app/templates/components/donation/donation-container.hbs @@ -37,7 +37,8 @@ diff --git a/app/templates/components/site-footer.hbs b/app/templates/components/site-footer.hbs index a0c331c20..9bb211cc7 100644 --- a/app/templates/components/site-footer.hbs +++ b/app/templates/components/site-footer.hbs @@ -24,13 +24,13 @@
Code Corps is a platform where people can support public software projects by volunteering their time or donating their money.
+ +“We”, “our”, or “us” refers to Code Corps PBC, a Delaware public benefit corporation and/or its subsidiaries.
+ +We understand that providing information online involves a great deal of trust on your part. We take this trust very seriously, and make it a high priority to ensure the security and confidentiality of the personal information you provide to us when you this website (the “Site”) and services (together with the Site, the “Services”) offered by us.
+ +As part of our {{#link-to 'terms'}}Terms of Use{{/link-to}}, this Privacy Notice describes the types of personal information we collect on Code Corps, how we may use that information and with whom we may share it. Our Privacy Notice also describes the measures we take to protect the security of the personal information. Before submitting your personal information to us, please read this policy carefully to learn about our privacy practices.
+ ++
We collect certain information by automated means when you visit our Sites, such as how many users visited our Sites and the pages accessed. We collect this information through various means such as “cookies,” “web beacons” and IP addresses, as explained below.
+ ++
Certain data that you submit to us will not be shared with any party outside of Code Corps, except as required to provide our Services (such as payment processing). This data includes:
+ ++
When we share data with third-parties that support our delivery of the Services, we require that they protect your personal information to the same standards we do. We do reserve the right to disclose personal information if required, for example:
+ ++
If you join a project or organization to volunteer your time, or if you donate to a project, we will inform the project’s owner or organization of your account name, email address, details about your skills, interests, abilities, and biographical information. Project owners and administrators are expected to respect the confidentiality of this information. Further, if you donate to a project or organization, we will also inform the project’s owner or organization of the amount of your donation.
+ +Some projects and organizations may request personal information in order to show their appreciation (for example, they may ask for your mailing address, or your T-shirt size). You may choose to provide that information at your own discretion.
+ +Projects and organizations have the ability to appoint or accept administrators. These administrators will be able to access the same information available to projects and organizations (including your name, email, contribution amounts, skills, interests, abilities, and biographical information). These administrators are required to treat your personal information with the same care and respect expected of projects and organizations.
+ +Projects, organizations, and administrators may also receive anonymized information about the ways people visit and interact with their project and organizations, in the form of basic analytics.
+ +When you create an account, a basic profile page for you will be created on Code Corps. The profile is not searchable on Code Corps, but is accessible to search engines like Google. It will be available to any visitor of Code Corps. The profile page may contain:
+ ++
Each project page and organization page also lists the community of users who have contributed to the project, either by joining, volunteering their time, or by donating money.
+ +To modify or delete the personal information you have provided to us, please log in and update your profile. We may retain certain information associated with your account in our archives for analytical purposes and recordkeeping integrity.
+ +We will use the personal information you provide to:
+ ++
We take your data, your privacy, and your trust very seriously. We never post anything to third-party accounts like Facebook, Twitter, or GitHub without your permission. Project creators and organizations never receive your credit card details or other payment information. We do not sell, rent, trade or otherwise disclose personal information visitors submit through our Sites, except as described in this Privacy Notice.
+ +Code Corps uses third-party vendors and hosting partners to provide the necessary hardware, software, networking, storage, and related technology required to run Code Corps. Although we own the code, databases, and all rights to the Code Corps application (according to the various licenses for Code Corps’ software), you retain all rights to your own data.
+ +We want to send email to you only if you want to hear from us. We will send you email relating to your personal transactions, like payments or activity. You will also receive certain marketing emails, in accordance with your preferences, and from which you may opt out any time. We may send you service-related announcements on the rare occasions when it is necessary to do so. We try to keep emails to a minimum and give you the ability to opt out of any emails we send.
+ +Code Corps is a general audience site and does not offer services directed to children. Should an individual whom we know to be a child under age 13 send personal information to us, we will delete or destroy such information as soon as reasonably possible.
+ +Occasionally we provide links to other websites for your convenience and information. These websites operate independently from our Sites and are not under our control. These sites may have their own privacy notices or terms of use, which we strongly suggest you review if you visit any linked websites. We are not responsible for the content of these sites, any products or services that may be offered through these sites, or any other use of the linked sites.
+ +California Civil Code Section 1798.83 permits California residents to request certain information regarding our disclosure of Personal Information to third parties for their direct marketing purposes. To make such a request, please contact us at the address provided below.
+ +To the extent required by law, we provide users with (i) reasonable access to the personal information they provide through the Sites, and (ii) the ability to review, correct and delete such personal information. To help protect your privacy, we take reasonable steps to verify your identity before granting access to your information.
+ +We may transfer the personal information we collect through the Sites to other countries where we do business, which may not have the same data protection laws as the country in which you reside. We strive to protect all information we receive in accordance with this Privacy Policy.
+ +We may update or change this Privacy Notice from time to time and without prior notice to you. We will post a prominent notice on this web page to notify you of any significant changes to our Privacy Notice and indicate at the top of the notice when it was most recently updated.
+ +If you have any questions about our information practices, please contact us at team@codecorps.org or you can write to us at:
+ +
+ Code Corps PBC
+ 4166 Wilson Ave #1
+ San Diego, CA 92104
+
Effective December 7, 2016
+ +This Privacy Notice is a draft and is subject to review. We will inform all users about future changes.
+Coming soon...
diff --git a/app/templates/terms.hbs b/app/templates/terms.hbs new file mode 100644 index 000000000..4d925aea1 --- /dev/null +++ b/app/templates/terms.hbs @@ -0,0 +1,217 @@ +Code Corps is a platform where people can support public software projects by volunteering their time or donating their money.
+ +“We”, “our”, or “us” refers to Code Corps PBC, a Delaware public benefit corporation and/or its subsidiaries.
+ +By using this website (the “Site”) and services (together with the Site, the “Services”) offered by us, you’re agreeing to these legally binding rules (the “Terms”). “Code Corps” refers to the Site and the Services offered by us under these Terms. You’re also agreeing to our {{#link-to 'privacy'}}Privacy Policy{{/link-to}} and any other rules we post on Code Corps.
+ +If we make material changes to these Terms, we will notify you by sending an email to the address you provided at the time of registration or by posting an announcement on Code Corps. Your continued access or use of Code Corps means you accept the new terms.
+ +When you register for an account you must provide us with information that is true, accurate, and complete. If you don’t provide us with accurate information we may not be able to assist you with accessing your account.
+ +You must be at least 13 years old to register for an account. However, you must be at least 18 years old or have your parent’s permission to give or receive donations. Please report to us any users who do not meet these age requirements.
+ +You will safeguard your account information. If you believe your account is compromised, you must contact us immediately.
+ +You are responsible for all of your account activity. We hold the right to terminate your account for any reason.
+ +Additionally, you agree not to:
+ ++
We take no responsibility and assume no liability for any content posted, stored or uploaded by you or any third party, or for any loss or damage thereto, nor are we liable for any mistakes, defamation, slander, libel, omissions, falsehoods, obscenity, pornography or profanity you may encounter. We are also not liable for any statements, representations or content provided by our users on Code Corps.
+ +Although we have no obligation to screen, edit or monitor any of the content posted to or distributed through Code Corps, we reserve the right, and have absolute discretion, to remove, screen, translate or edit without notice any content posted or stored on Code Corps at any time and for any reason, or to have such actions performed by third parties on our behalf. We are not responsible for your content on Code Corps and you are solely responsible for creating backup copies of and replacing any content you create or store on Code Corps at your sole cost and expense.
+ +In the interest of fostering a welcoming and safe environment, all users pledge to keep the Code Corps community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race religion, or sexual identity or orientation.
+ +To keep Code Corps safe for everyone, users should do the following:
+ ++
To keep Code Corps safe for everyone, users should not do any of the following:
+ ++
Users should make sure that everyone using Code Corps understands these guidelines. Projects will be expected to take timely, appropriate and fair corrective action in response to any instances of unacceptable behavior. This may include removing, editing, or rejecting comments, messages, tasks and other contributions that are not aligned with these terms, and may include temporarily or permanently banning any user for other behaviors that are deemed to be inappropriate, threatening, offensive or harmful.
+ +These standards apply on Code Corps and in public spaces when users are representing the interests of their project. Examples of public spaces may include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. If any complaint arises please follow the instructions set forth in the Complaints section of these Terms below.
+ +This Code of Conduct is adapted from the Contributor Covenant, version 1.4, available at http://contributor-covenant.org/version/1/4.
+ +Donations are a monthly subscription where you pay projects per month.
+ +In order to donate, you must create an account, submit your preferred payment method (your credit card details, for example), choose a project, and donate.
+ +You are charged immediately at the time of the donation for the full amount of the subscription. During the following month you will be charged on the same day as when you originally subscribed. For example, if you subscribed on October 14, then you will be charged on the 14th of each month. If the date does not occur every billing cycle (e.g., you subscribed on the 31st, but the next month only has 30 days), then you will be charged on the last day of the month.
+ +You may cancel your donation at any time by contacting us at team@codecorps.org. Once your donation is canceled, you will not be charged again for that subscription in the future.
+ +We do not grant refunds for failure to meet project goals. We do not hold funds on behalf of projects. We do attempt to screen for potentially fraudulent projects, but cannot guarantee the identity of project creators or the accuracy of any claims made by projects.
+ +Donations are a monthly subscription to your project.
+ +You must set donation goals in order to accept donations. A donation goal represents a dollar amount that you are hoping to raise in order to support your operations and a realistic and honest description of how you intend to use any donated funds.
+ +Donors are charged immediately at the time of the donation for the full amount of the subscription. During the following month they will be charged on the same day as when they originally subscribed. For example, if they subscribed on October 14, then they will be charged on the 14th of each month. If the date does not occur every billing cycle (e.g., they subscribed on the 31st, but the next month only has 30 days), then they will be charged on the last day of the month.
+ +We try to transfer your funds on a regular basis, but you may experience occasional delays in accessing your funds. We may also block payments for violations of these Terms or for other regulatory or compliance reasons. In the event payments are delayed or blocked, we will try to communicate the reasons to you in a reasonable amount of time. We may also block some payments to your project if we believe them to be fraudulent in order to protect you from fraud.
+ +Our fee is 5% of processed donations. Payment processing fees may vary.
+ +Donors under the age of 18 require permission to donate to your project. Account registration is strictly prohibited for anyone under the age of 13.
+ +By accepting donations on Code Corps, you also agree to the Stripe Connected Account Agreement. https://stripe.com/us/connect-account/legal
+ +We do not handle tax payments. You are responsible for paying any additional fees or taxes associated with your use of Code Corps.
+ +You agree that you will use Code Corps only to make legitimate donations or to accept donations for yourself or third parties that are legally entitled to such funds. Any false or fraudulent project funding or fund raising is prohibited, and any user who attempts such fraudulent activity will have their Code Corps account terminated.
+ +AS A USER OF CODE CORPS YOU UNDERSTAND AND AGREE THAT: (1) NEITHER US NOR OUR AFFILIATES WILL HAVE ANY LIABILITY TO YOU OR OTHERS FOR ANY UNAUTHORIZED TRANSACTIONS MADE USING YOUR PASSWORD OR ACCOUNT; AND (2) THE UNAUTHORIZED USE OF YOUR PASSWORD OR ACCOUNT COULD CAUSE YOU TO INCUR LIABILITY TO BOTH US AND OUR USERS.
+ +We will not interfere arbitrarily, but we reserve the right to cancel or not process donations because of certain extenuating circumstances, such as when a third party group is no longer in existence or when we have reasonable cause to suspect that such donations may be fraudulent. We also reserve the right to take steps to verify your identity to process your transaction.
+ +You agree that we are not responsible for the accuracy or completeness of information we obtain from third parties and display on Code Corps. CODE CORPS PBC DOES NOT REPRESENT, WARRANT, OR GUARANTEE ANY STATEMENT OR REPRESENTATION MADE BY ANY USER SOLICITING PROJECT FUNDS ON THE WEBSITE. CODE CORPS PBC IS NOT LIABLE FOR THE ACTS, ERRORS, OMISSIONS, REPRESENTATIONS, WARRANTIES, BREACHES OR NEGLIGENCE OF ANY SUCH ORGANIZATION OR PROJECT. YOU SHOULD THOROUGHLY INVESTIGATE ANY PROJECT THAT YOU ARE CONSIDERING DONATING TO.
+ +Code Corps may contain hyperlinks to websites operated by parties other than us. Such hyperlinks are provided for your reference and convenience only. We do not control such websites and are not responsible for their content or the privacy or other practices of such websites. Further, it is up to you to take precautions to ensure that whatever links you select or software you download (whether from Code Corps or other websites) is free of such items as viruses, worms, trojan horses, defects and other items of a destructive nature. Our inclusion of hyperlinks to such websites does not imply any endorsement of the material on such websites or any association with their operators. In some cases, you may be asked by a third party site to link your profile on Code Corps to a profile on another third party site. Choosing to do so is purely optional, and the decision to allow this information to be linked can be disabled (with the third party site) at any time.
+ +You may have the option to connect your Code Corps account with a third party service. If you decide to integrate your information with a third party service, that service will receive such information according to our {{#link-to 'privacy'}}Privacy Policy{{/link-to}}. However, please look to the Terms of Use and Privacy Policy of any third party service that you decide to integrate your data with. We are not responsible for how a third party service distributes your personally identifiable information or private data.
+ +You maintain intellectual property rights to the material you provide to us, e.g. your profile, your project information, or any materials uploaded. However, by choosing to display your information publicly, you agree to allow others to view your content.
+ +We do not pre-screen projects, but we maintain the right (but not the obligation) to refuse or remove any content that is available via the platform.
+ +The Services allowed by this Site are copyrighted by Code Corps PBC. All rights reserved.
+ +We are not responsible for content on websites operated by parties other than us. Our name, logo, and all other service names or slogans displayed on this Site are registered and/or common law trademarks of us and/or our licensors, and may not be copied, imitated or used, in whole or in part, without the prior written permission of us or the applicable trademark holder.
+ +All other trademarks, registered trademarks, product names and company names or logos mentioned on this Site are the property of their respective owners. Reference to any products, services, processes or other information, by trade name, trademark, manufacturer, supplier or otherwise does not constitute or imply endorsement, sponsorship or recommendation thereof by us.
+ +If you are aware of an infringement of either your brand or our brand, please let us know by e-mailing us at team@codecorps.org.
+ +You agree to defend, indemnify, and hold harmless Code Corps PBC, its affiliates and parent companies, any of their officers, directors, employees, agents or personal representatives from and against any claims, causes of action, demands, recoveries, losses, damages, fines, penalties or other costs or expenses of any kind or nature, including, but not limited to, reasonable legal and accounting fees, brought by third parties as a result of:
+ ++
Your use of Code Corps is at your sole risk. The service is provided on an "as is" and "as available" and without warranty of any kind, express or implied.
+ +WE SPECIFICALLY DISCLAIM ANY AND ALL WARRANTIES AND CONDITIONS OF MERCHANTABILITY, NON-INFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE, AND ANY WARRANTIES IMPLIED BY ANY COURSE OF DEALING, COURSE OF PERFORMANCE, OR USAGE OF TRADE. NO ADVICE OR INFORMATION (ORAL OR WRITTEN) OBTAINED BY YOU FROM US SHALL CREATE ANY WARRANTY.
+ +To the fullest extent permitted by law, in no event will we, our directors, employees, partners, suppliers, or content providers be liable for any indirect, incidental, punitive, consequential, special, or exemplary damages of any kind, including but not limited to damages (i) resulting from your access to, use of, or inability to access or use the Services; (ii) for any lost profits, data loss, or cost of procurement or substitute goods or services; or (iii) for any conduct of content of any third party on the Site. In no event shall our liability for direct damages be in excess of (in the aggregate) one hundred U.S. dollars ($100.00).
+ +This Site is operated by a U.S. entity and these Terms are governed by the laws of the state of California, United States of America. You hereby consent to the exclusive jurisdiction and venue of courts in the state of California in the United States of America and stipulate to the fairness and convenience of proceedings in such courts for all disputes arising out of or relating to the use of Code Corps. You agree that all claims you may have against us arising from or relating to Code Corps must be heard and resolved in a court of competent subject matter jurisdiction located in California. Use of Code Corps is unauthorized in any jurisdiction that does not give effect to all provisions of these terms and conditions, including, without limitation, this paragraph.
+ +You agree that no joint venture, agency, partnership, or employment relationship exists between you and us and/or any of our affiliates as a result of these Terms or use of this Site.
+ +If any part of these Terms is determined to be invalid or unenforceable pursuant to applicable law including, but not limited to, the warranty disclaimers and liability limitations set forth above, then the invalid or unenforceable provision will be deemed superseded by a valid, enforceable provision that most closely matches the intent of the original provision and the remaining provisions in these Terms shall continue in effect.
+ +These Terms (and any other policies or rules referenced herein) constitute the entire agreement between you and us with respect to this Site and it supersedes all prior or contemporaneous communications and proposals, whether electronic, oral, or written, between you and us with respect to this Site. A printed version of these Terms and of any notice given in electronic form shall be admissible in judicial or administrative proceedings based upon or relating to these Terms to the same extent and subject to the same conditions as other business documents and records originally generated and maintained in printed form.
+ +Fictitious names of companies, products, people, characters, and/or data mentioned on this Site are not intended to represent any real individual, company, product, or event. Any rights not expressly granted herein are reserved.
+ +If any user has engaged in any conduct that you feel is inappropriate, harmful or offensive, please report such conduct by contacting us at team@codecorps.org. All complaints will be reviewed and investigated and will result in a timely response that is appropriate in the circumstances. We will maintain confidentiality and anonymity with the report of any incident.
+ +If you have any questions or need to contact us, please contact us at team@codecorps.org or you can write to us at:
+ +
+ Code Corps PBC
+ 4166 Wilson Ave #1
+ San Diego, CA 92104
+
Effective December 7, 2016
+ +These Terms are a draft and are subject to review. We will inform all users about future changes.
+