-
Notifications
You must be signed in to change notification settings - Fork 0
/
crowd.html
96 lines (83 loc) · 3.56 KB
/
crowd.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- jquery refactor link -->
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<!-- ======= Nav Bar Section & Head Tag files imported from another file ======= -->
<div id="nav-placeholder"></div>
<script>
$.get("navBar.html", function(data){
$("#nav-placeholder").replaceWith(data);
});
</script>
<div class="container">
<!-- ======= Section ======= -->
<section class="section section-bg1">
<div class="container section-bg2" id="crowd-inner">
<div class="section-title">
</br></br></br>
<h3 data-aos="fade-in">Participate</h3>
<p>Help us improve our ML model by ranking some terms & conditions.</p><br></br>
<p>Click the statement that you think is more important for you,
a customer browsing the website, to know.</p>
</br>
<p> The following two terms&conditions are from:
https://www.geekbuying.com/help/customer_service/return_policy</p>
</br>
<div class="row">
<div class="statement left" id="s-left" onclick="selectStatementLeft()">
<h4 class="statement-title"> Statement 1: </h4>
<p class="statement-description">
GeekBuying will be in charge of all the repair handling
fees and non-artificial defective component replacement
charges (this free repair rule does not apply to
motherboard & screen).</p>
</div>
<div class="statement right" id="s-right" onclick="selectStatementRight()">
<h4 class="statement-title"> Statement 2: </h4>
<p class="statement-description">
Geekbuying sincerely suggests every respected customer
to read the following regulations carefully
before purchase.</p>
</div>
</div>
<div class="statement-equal" id="s-bot" onclick="selectStatementBot()">
<p class="statement-description">
Both statements are equally important.</p>
</div>
<input type="submit" class="btn-submit" id="s-submit" value="Submit">
</div>
</div>
</section>
<!-- End Section -->
</div>
<!-- ======= Footer & JS files + Firebase imported from another file ======= -->
<div id="footer-placeholder"></div>
<script>
$.get("footer.html", function(data){
$("#footer-placeholder").replaceWith(data);
});
</script>
<!-- Top of page arrow -->
<a href="#" class="back-to-top"><i class="icofont-simple-up"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/venobox/venobox.min.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
<!-- FIREBASE -->
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.14.1/firebase-app.js"></script>
<!-- Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/7.14.1/firebase-database.js"></script>
<!-- END FIREBASE -->
</body>
</html>