-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathselection.php
134 lines (104 loc) · 3.28 KB
/
selection.php
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Add Disease and Symptoms For an Eye < </title>
<link rel="stylesheet" href="css/bootstrap.min.css" media="screen" >
<link rel="stylesheet" href="css/font-awesome.min.css" media="screen" >
<link rel="stylesheet" type="text/css" href="js/DataTables/datatables.min.css"/>
<link rel="stylesheet" href="css/main.css" media="screen" >
<script src="js/modernizr/modernizr.min.js"></script>
<style>
body{
background-color:white;
width:auto;
height:auto;
margin:30 auto;
}
.intro-page{
margin-left: 203px;
margin-right: 203px;
margin-top:100px;
}
.intro-page h2{
font-size: 32px;
font-weight: 900;
color: #12bac2;
}
.intro-page p
{
color: #071c55;
font-size: 19px;
font-weight: 800;
}
.flex-p {
display: flex;
flex-wrap: wrap;
align-items: center;
padding-bottom: 38px;
}
}
.flex-p .image-p{
flex-basis: 30%;
max-width: 30%;
padding: 10px;
}
.flex-p .content-p {
flex-basis: 70%;
max-width: 70%;
padding: 21px;
}
.flex-p .content-p li{
}
.intro-page a{
background-color: #25dfce;
font-size: 60x;
font-weight: 900;
color: #131001;
}
.intro-page button{
background-color: #25dfce;
float: right;
margin-right: 60px;
}
</style>
</head>
<body >
<!-- ========== TOP NAVBAR ========== -->
<?php include('link/user-topber.php'); ?>
</div>
<div class="intro-page" >
<div class="flex-p">
<div class="content-p">
<h2> Terms & Policy </h2>
<p>Before using the checkup, please read Terms of Service. Remember that : </p>
<ul>
<li>Checkup is not a diagnosis. Checkup is for informational purposes and is not a qualified medical opinion.</li>
<li>Do not use in emergencies. In case of health emergency, call your local emergency number immediately.</li>
<li>Your data is safe. Information that you provide is anonymous and not shared with anyone.</li>
</ul>
</div>
<div class="image-p">
<img src="images/policy.JPG">
</div>
</div>
<a href="question-intro.php" ><button>NEXT</button>
</div>
<!-- /.main-wrapper -->
<script src="js/jquery-2.2.4.min.js"></script>
<script src="js/main.js"></script>
<script>
$(function($) {
$(".js-states").select2();
$(".js-states-limit").select2({
maximumSelectionLength: 2
});
$(".js-states-hide").select2({
minimumResultsForSearch: Infinity
});
});
</script>
</body>
</html>