return Home
terms_conditions.js
Terms & Conditions — Orange Academy
1
// Acceptance of Terms of Use
const acceptanceOfTerms = "By using this Site you agree to be bound by these Terms";
The following Terms apply to anyone (corporate and individuals) accessing and using Orange Coding Academy website for the subscription in Coding Academy registration application which include content, text, information, advertising, data, audio/visual materials and, software (the "Content") to subscribe.
2
// Privacy Policy and Property Rights
class PrivacyPolicy {
The provisions of the Privacy Policy apply to the Academy and all the courses it offers during the entire training period and until the end of the contract between them.
- Collect, use and maintain the information that is collected from me in the manner deemed appropriate by the Coding Academy by Orange Jordan.
- const trainingMaterials = "may not be used or sent abroad the Academy except with written permission";
- // Student Projects
- All students' small and large projects are educational outputs by the Coding Academy by Orange in Jordan. The Academy has the right to use these projects and/or present them to the concerned authorities without my prior permission.
- photoShoot("me") && film("my projects") → "use in media without prior permission";
3
// ACCESS
function accessSite() {
- if (provideInformation(false)) { // untrue, inaccurate
- return suspendAccount();
- }
- const password = getPassword();
- if (unauthorizedAccess(password)) {
- notifyUser("security breach");
- return terminateAccount();
- }
4
// Creating Your Profile
const registrationSteps = [
- "Log on to orangecodingacademy.com website",
- "Access Sign on Services from the homepage",
- "Fill in the registration form" ];
registerProfile(registrationSteps);
5
// PRIVACY POLICY
import { privacyPolicy } from '@orange/policy';
await viewPrivacyPolicy(); // PLEASE VIEW OUR PRIVACY POLICY
this.useOfInformation = consentToCollection(); // You consent to the collection and use of this information
6
// DISCLAIMER OF WARRANTIES AND LIMITATION OF LIABILITY
const siteStatus = "as is"; // "as is" and "as available" basis
- try {
- const warranty = disclaimAllWarranties();
- const liability = limitLiability(0);
- } catch (damages) {
- notLiable("direct, indirect, incidental, punitive, consequential damages");
- }
7
// End of Terms
export default agreeToTerms();