-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount_three.html
136 lines (107 loc) · 5.33 KB
/
account_three.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
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
135
136
<!DOCTYPE html>
<html lang="en" dir="ltf">
<head>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/x-icon" href="./icon.png">
<title>
Pool | account
</title>
</head>
<main>
<body>
<svg preserveAspectRatio="xMidYMid slice" viewBox="10 10 80 80">
<defs>
<style>
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.out-top {
animation: rotate 20s linear infinite;
transform-origin: 13px 25px;
}
.in-top {
animation: rotate 10s linear infinite;
transform-origin: 13px 25px;
}
.out-bottom {
animation: rotate 25s linear infinite;
transform-origin: 84px 93px;
}
.in-bottom {
animation: rotate 15s linear infinite;
transform-origin: 84px 93px;
}
</style>
</defs>
<path fill="#90E0EF" class="out-top" d="M37-5C25.1-14.7,5.7-19.1-9.2-10-28.5,1.8-32.7,31.1-19.8,49c15.5,21.5,52.6,22,67.2,2.3C59.4,35,53.7,8.5,37-5Z"/>
<path fill="#00B4D8" class="in-top" d="M20.6,4.1C11.6,1.5-1.9,2.5-8,11.2-16.3,23.1-8.2,45.6,7.4,50S42.1,38.9,41,24.5C40.2,14.1,29.4,6.6,20.6,4.1Z"/>
<path fill="#90E0EF" class="out-bottom" d="M105.9,48.6c-12.4-8.2-29.3-4.8-39.4.8-23.4,12.8-37.7,51.9-19.1,74.1s63.9,15.3,76-5.6c7.6-13.3,1.8-31.1-2.3-43.8C117.6,63.3,114.7,54.3,105.9,48.6Z"/>
<path fill="#0077B6" class="in-bottom" d="M102,67.1c-9.6-6.1-22-3.1-29.5,2-15.4,10.7-19.6,37.5-7.6,47.8s35.9,3.9,44.5-12.5C115.5,92.6,113.9,74.6,102,67.1Z"/>
</svg>
<div class="pool-title">
<h1><a href="./index.html">pool</a></h1>
</div>
<section>
<div id="account-options" class="content">
<div class="box" style="margin-bottom: 20px;">
<h2>Hi Diego!</h2>
<p>
<b>STATUS:</b> As soon as we've found a potential match, we will text you with instructions to review their profile and confirm them as a match. <br><br>More <a href="#how-it-works">here.</a>
</p>
<p>
<b>PLANS: </b>
<ul>
<li>Leaving Max P</li> <!-- Departure Location-->
<li>at 12:30pm on August 12</li> <!-- Departure Time and Date-->
<li>Going to Midway</li> <!-- Destination Location-->
</ul>
</p>
<button class="submit-button" id="report-feedback-button"><a href="./feedback.html">report / feedback</a></button><br><br>
</div>
<script src="./js/account.js"></script>
</section>
<section>
<div class="content" id="how-it-works">
<div class="box">
<h2>How it works</h2>
<ol>
<li>Enter your departure schedule</li>
<li>Get paired with your <em>PoolPal</em> via SMS (for higher match rate, plan early)</li>
<li>Finalize details with your <em>PoolPal</em> and order and split the price of a car together</li>
<li>Save money on your trip to the airport. safe travels!</li>
</ol>
</div>
<div class="box" >
<p style="font-weight: 600">
*Pool does not order your ride-share. we provide the contact information of
someone who shares your itenerary for you to finalize ride details with.
</p>
</div>
<!-- <div id="onboard-buttons" style="margin-right: 10px; margin-top: 13px">
<a href="./signup.html" class="small-button" id="signup-button">sign up</a>
</div> -->
<a href="#about-us" class="scroll-link" style="bottom: -110px">Our story<br>⌄</a>
</div>
</section>
<section>
<div class="content" id="about-us">
<a href="#account-options" class="scroll-link" style="top: -170px">^<br>Account</a>
<div class="box" id="about-us-content">
<p>
Save your money for the things you love. <br><br>
<a href="./signup.html">sign up</a> • <a href="./account.html">account</a><br>
<a href="#how-it-works">how / what</a> • <a href="./feedback.html">feedback</a> <br><br>
by Diego Scanlon and Pranav Padmanahvan<br>
@ UChicago in 2023</p>
</div>
</div>
</section>
</body>
</main>
</html>