-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPolicy.js
103 lines (96 loc) · 4.29 KB
/
Policy.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import React, { Component } from 'react';
import {
StyleSheet,
Text,
View,
Navigator,
TouchableOpacity,
Dimensions,
Image,
Alert,
PropTypes,
TextInput,
ScrollView
} from 'react-native';
import SingUp from './SingUpScreen'
import policyStyle from './PolicyStyle'
var SCREEN_WIDTH = require('Dimensions').get('window').width;
var BaseConfig = Navigator.SceneConfigs.FloatFromRight;
const { width, height } = Dimensions.get('window');
class Policy extends Component{
constructor(props){
super(props)
this.stete={
name : "",
email : "",
password : "",
}
}
render(){
return(
<Image
source = {require('./images/Rectangle.png')}
style = {{width : width, height : height}}>
<View style = {policyStyle.container}>
<View style = {policyStyle.navBar}>
<Text style = {policyStyle.navBarText}> TERMS OF SERVICE & PRIVACY POLICY </Text>
<View style = {policyStyle.BarForBack}>
<TouchableOpacity onPress={() => this.props.navigator.replace({id: 1,})}>
<Image
source={require('./images/back.png')}
style ={policyStyle.imgBack}/>
</TouchableOpacity>
</View>
</View>
<ScrollView style ={{flex :1}}>
<Text style={{marginHorizontal:width/10, fontFamily : 'Roboto-Medium'}}>Terms of Service </Text>
<Text style={{marginHorizontal:width/10, fontFamily : 'Roboto-Regular'}}>A privacy policy is a statement or a legal
document (in privacy law) that discloses some
or all of the ways a party gathers, uses,
discloses, and manages a customer or client's
data. It fulfills a legal requirement to protect a
customer or client's privacy. Personal
information can be anything that can be used to
identify an individual, not limited to but
including name, address, date of birth, marital
status, contact information, ID issue and expiry
date, financial records, credit information,
medical history, where one travels, and
intentions to acquire goods and services.[1] In
the case of a business it is often a statement
that declares a party's policy on how it collects,
stores, and releases personal information it
collects. It informs the client what specific
information is collected, and whether it is kept
confidential, shared with partners, or sold to
other firms or enterprises.[2] '</Text>
<Text> </Text>
<Text style={{fontFamily : 'Roboto-Medium',marginHorizontal:width/10}}>Privacy Policy </Text>
<Text style={{marginHorizontal:width/10, fontFamily : 'Roboto-Regular'}}>
A privacy policy is a statement or a legal
document (in privacy law) that discloses some
or all of the ways a party gathers, uses,
discloses, and manages a customer or client's
data. It fulfills a legal requirement to protect a
customer or client's privacy. Personal
information can be anything that can be used to
identify an individual, not limited to but
including name, address, date of birth, marital
status, contact information, ID issue and expiry
date, financial records, credit information,
medical history, where one travels, and
intentions to acquire goods and services.[1] In
the case of a business it is often a statement
that declares a party's policy on how it collects,
stores, and releases personal information it
collects. It informs the client what specific
information is collected, and whether it is kept
confidential, shared with partners, or sold to
other firms or enterprises.[2]'</Text>
</ScrollView>
</View>
</Image>
);
}
}
module.exports = Policy;