|
1 |
| -<!doctype html> |
| 1 | +<!DOCTYPE html> |
2 | 2 | <html lang="en">
|
3 |
| - |
4 | 3 | <head>
|
5 |
| - <meta charset="utf-8"> |
6 |
| - <meta name="description" content=""> |
7 |
| - <meta name="viewport" content="width=device-width, initial-scale=1"> |
8 |
| - <meta name="generator" content="Polymer Starter Kit"> |
9 |
| - <title>Final Competition</title> |
10 |
| - <meta name="theme-color" content="#2B3D62"> |
11 |
| - <link rel="manifest" href="manifest.json"> |
12 |
| - <meta name="msapplication-TileColor" content="#3372DF"> |
13 |
| - <meta name="mobile-web-app-capable" content="yes"> |
14 |
| - <meta name="application-name" content="PSK"> |
15 |
| - <link rel="icon" sizes="192x192" href="images/touch/chrome-touch-icon-192x192.png"> |
16 |
| - <meta name="apple-mobile-web-app-capable" content="yes"> |
17 |
| - <meta name="apple-mobile-web-app-status-bar-style" content="black"> |
18 |
| - <meta name="apple-mobile-web-app-title" content="Pioneers in Engineering"> |
19 |
| - <link rel="apple-touch-icon" href="images/touch/apple-touch-icon.png"> |
20 |
| - <meta name="msapplication-TileImage" content="images/touch/ms-touch-icon-144x144-precomposed.png"> |
21 |
| - <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,700,700italic" rel="stylesheet" type="text/css"> |
22 |
| - <link rel="stylesheet" href="styles/main.css"> |
23 |
| - <script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script> |
24 |
| - <link rel="import" href="elements/elements.html"> |
25 |
| - <style is="custom-style"> |
26 |
| - paper-tabs { |
27 |
| - --paper-tabs-selection-bar-color: var(--pie-gold); |
28 |
| - background: #2B3D62; |
29 |
| - color: white; |
30 |
| - padding: 1px; |
31 |
| - position: relative; |
32 |
| - top: -20px; |
33 |
| - } |
34 |
| - |
35 |
| - #rankings-explanation { |
36 |
| - text-align: center; |
37 |
| - } |
38 |
| - |
39 |
| - .survey-link { |
40 |
| - text-align: center; |
41 |
| - } |
42 |
| - |
43 |
| - #survey-nav-item { |
44 |
| - color: white; |
45 |
| - background-color: var(--pie-gold-light); |
46 |
| - } |
47 |
| - </style> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>Chatbot</title> |
48 | 7 | </head>
|
| 8 | +<body> |
| 9 | + |
| 10 | + <!-- Chatbot Container --> |
| 11 | + <div class="chat-container" style="width: 400px; height: 500px; border: 1px solid #ccc; padding: 20px; border-radius: 10px; background-color: #fff;"> |
| 12 | + |
| 13 | + <!-- Chatbox Area --> |
| 14 | + <div class="chat-box" style="height: 350px; overflow-y: auto; padding: 10px; background-color: #f9f9f9; border-radius: 10px;"> |
| 15 | + <!-- Sample Bot Messages --> |
| 16 | + <div class="message bot" style="background-color: #d1e7dd; padding: 10px; margin-bottom: 10px; border-radius: 10px; max-width: 75%;"> |
| 17 | + <p>Hello! 👋 I'm your chatbot. How can I help you today?</p> |
| 18 | + </div> |
| 19 | + |
| 20 | + <!-- Sample User Messages --> |
| 21 | + <div class="message user" style="background-color: #cce5ff; padding: 10px; margin-bottom: 10px; border-radius: 10px; max-width: 75%; margin-left: auto;"> |
| 22 | + <p>Hi, I need help with my account.</p> |
| 23 | + </div> |
| 24 | + |
| 25 | + <!-- More messages can go here --> |
| 26 | + </div> |
| 27 | + |
| 28 | + <!-- User Input Area --> |
| 29 | + <div class="user-input-container" style="display: flex; margin-top: 20px;"> |
| 30 | + <input type="text" placeholder="Type a message..." style="flex-grow: 1; padding: 10px; border-radius: 5px; border: 1px solid #ccc;"> |
| 31 | + <button style="padding: 10px; margin-left: 10px; background-color: #007bff; color: white; border: none; border-radius: 5px;">Send</button> |
| 32 | + </div> |
49 | 33 |
|
50 |
| -<body unresolved=""><template is="dom-bind" id="app"> |
51 |
| - <paper-drawer-panel id="paperDrawerPanel"> |
52 |
| - <paper-scroll-header-panel drawer="" fixed=""> |
53 |
| - <paper-toolbar id="drawerToolbar" class="tall"><span id="drawer-title" class="drawer-top">Final Competition</span> <span id="drawer-subtitle" class="drawer-top">Pioneers in Engineering</span> |
54 |
| - <iron-icon id="drawer-close" class="drawer-top" icon="icons:close" paper-drawer-toggle=""></iron-icon> |
55 |
| - </paper-toolbar> |
56 |
| - <paper-menu class="app-menu" attr-for-selected="data-route" selected="[[route]]"><a data-route="home" href="{{baseUrl}}"><span>Home</span></a> <a data-route="schedule" href="{{baseUrl}}schedule"><span>Schedule</span></a> <a |
57 |
| - data-route="qual-matches" href="{{baseUrl}}qual-matches"><span>Queuing</span></a> <a data-route="elim-matches" href="{{baseUrl}}elim-matches"><span>Alliances</span></a> <a data-route="livestream" href="{{baseUrl}}livestream"><span>Livestream</span></a> <a id="survey-nav-item" |
58 |
| - href="" target="_blank"><span>Survey!</span></a> <a data-route="license" href="{{baseUrl}}license"><span>License</span></a></paper-menu> |
59 |
| - </paper-scroll-header-panel> |
60 |
| - <paper-scroll-header-panel main="" id="headerPanelMain" condenses="" keep-condensed-header=""> |
61 |
| - <paper-toolbar id="mainToolbar" class="tall"> |
62 |
| - <paper-icon-button id="paperToggle" icon="menu" paper-drawer-toggle=""></paper-icon-button><span class="space"></span> |
63 |
| - <div class="middle middle-container"> |
64 |
| - <div class="app-name">Pioneers in Engineering</div> |
65 |
| - </div> |
66 |
| - <div class="bottom bottom-container"> |
67 |
| - <div class="bottom-title">Final Competition 2024</div> |
68 |
| - </div> |
69 |
| - </paper-toolbar> |
70 |
| - <div class="content"> |
71 |
| - <iron-pages attr-for-selected="data-route" selected="{{route}}" style="padding:0;"> |
72 |
| - <section data-route="home" tabindex="-1"> |
73 |
| - <div id="brand-image" class="home-banner"></div> |
74 |
| - <div id="shift-up"> |
75 |
| - <div class="container"> |
76 |
| - |
77 |
| - <paper-material id="welcome" elevation="1"><span id="intro-big">Welcome,</span><br><span id="intro-small">this is Final Competition!!</span></paper-material> |
78 |
| - <paper-material elevation="1"> |
79 |
| - Important Student links: <a href="https://docs.google.com/document/d/1HGjNaUBaAI9YNI-b5Yyv7WibTlrxYOn0CcXn1lYvHXA/edit?pli=1">Link</a> <br></br> |
80 |
| - Final Comp Itinerary: <a href="https://docs.google.com/document/d/1Xn3fWxkoAU0nebi3crus0QCBqTJrX8uZnlWh7BAb48E/edit?usp=sharing">Link.</a> |
81 |
| - |
82 |
| - </paper-material> |
83 |
| - |
84 |
| - |
85 |
| - <paper-material> |
86 |
| - <h2>What is Final Comp?</h2> |
87 |
| - <p>Pioneers in Engineering's Final Comp is the epic conclusion of our semester-long robotics competition season. This year, we've had over 100 high school students from 18 different high schools competing to see who can build the |
88 |
| - best robot. Final Comp is where they finally get to pit their robots against each other to see who will take home the gold in this year's game, Escape From Alcatraz. |
89 |
| - |
90 |
| - </p> |
91 |
| - <p> |
92 |
| - Final Comp Itinerary: <a href="https://docs.google.com/document/d/1Xn3fWxkoAU0nebi3crus0QCBqTJrX8uZnlWh7BAb48E/edit?usp=sharing">here.</a> |
93 |
| - </p> |
94 |
| - |
95 |
| - <div class="youtube-wrap"> |
96 |
| - <google-youtube video-id="dMCOwi6k35M" height="100%" width="100%"></google-youtube> |
97 |
| - </div> |
98 |
| - </paper-material> |
99 |
| - <paper-material> |
100 |
| - <h2>About PiE</h2> |
101 |
| - <p>Pioneers in Engineering (PiE) promotes science, technology, engineering, and mathematics (STEM) education through an exciting, mentorship-based process. We strongly believe that no student should be denied a quality STEM |
102 |
| - education experience.<br><br>To learn more about us, visit our website at <a href="https://pioneers.berkeley.edu" target="_blank">pioneers.berkeley.edu</a>.</p> |
103 |
| - </paper-material> |
104 |
| - <paper-material> |
105 |
| - <h2>Event Details</h2> |
106 |
| - <p> |
107 |
| - <ul> |
108 |
| - <li>Where: Hearst Memorial Mining Building</li> |
109 |
| - <li>When: 8 AM - 5 PM, Saturday 4/27 and Sunday 4/28</li> |
110 |
| - </ul> |
111 |
| - </p> |
112 |
| - </paper-material> |
113 |
| - <!-- <paper-material> |
114 |
| - <h2>Watch the 2015 Recap</h2> |
115 |
| - <div class="youtube-wrap"> |
116 |
| - <google-youtube video-id="VBMt-o8SAx0" height="100%" width="100%"></google-youtube> |
117 |
| - </div> |
118 |
| - </paper-material> --> |
119 |
| - </div> |
120 |
| - <div id="hero-image" class="home-banner"> |
121 |
| - <div id="hashtags"><span>#pierobotics</span><br><span>#pie_rc</span></div> |
122 |
| - </div> |
123 |
| - <div class="container"> |
124 |
| - <paper-material elevation="1"> |
125 |
| - <h2>Connect with us</h2><span class="social-media"><a href="https://twitter.com/PieRobotics" target="_blank"><img class="social-media-icons" src="images/twitter.png"> pierobotics</a><br><a |
126 |
| - href="https://www.instagram.com/pierobotics/" target="_blank"><img class="social-media-icons" src="images/instagram.png"> pierobotics</a><br><a href="https://www.facebook.com/pierobotics" target="_blank"><img |
127 |
| - class="social-media-icons" src="images/facebook.png"> Pioneers in Engineering</a><br><a href="https://pioneers.berkeley.edu" target="_blank"><img class="social-media-icons" src="images/globe.png"> |
128 |
| - pioneers.berkeley.edu</a></span> |
129 |
| - </paper-material> |
130 |
| - </div> |
131 |
| - </div> |
132 |
| - </section> |
133 |
| - <section data-route="schedule" tabindex="-1"> |
134 |
| - <paper-tabs id="match-tabs" selected="{{selected}}"> |
135 |
| - <paper-tab>Saturday</paper-tab> |
136 |
| - </paper-tabs> |
137 |
| - <iron-pages id="matches-page" selected="{{selected}}"> |
138 |
| - <div> |
139 |
| - <paper-material elevation="1"> |
140 |
| - Final Comp Itinerary: <a href="https://docs.google.com/document/d/1Xn3fWxkoAU0nebi3crus0QCBqTJrX8uZnlWh7BAb48E/edit?usp=sharing">here.</a> |
141 |
| - </paper-material> |
142 |
| - |
143 |
| - |
144 |
| - |
145 |
| - <paper-material elevation="1"> |
146 |
| - <iframe width="100%" height="600px"src="https://docs.google.com/spreadsheets/d/e/2PACX-1vTYGiiplKYPIQpGZ7fRHX9oUQCarTgkSSaE1naEt6EwORDZidZeAYp5atSrqw80Evz7ZH4RjMKHXgio/pubhtml?gid=278447706&single=true&widget=true&headers=false"></iframe> |
147 |
| - </div> |
148 |
| - |
149 |
| - </iron-pages> |
150 |
| - </section> |
151 |
| - <section data-route="qual-matches" tabindex="-1"> |
152 |
| - <paper-tabs id="match-tabs" selected="{{selected}}"> |
153 |
| - <paper-tab>QUEUING</paper-tab> |
154 |
| - </paper-tabs> |
155 |
| - <iron-pages id="matches-page" selected="{{selected}}"> |
156 |
| - <div> |
157 |
| - <paper-material elevation="1"> |
158 |
| - <iframe width="100%" height="600px"src="https://docs.google.com/spreadsheets/d/e/2PACX-1vTYGiiplKYPIQpGZ7fRHX9oUQCarTgkSSaE1naEt6EwORDZidZeAYp5atSrqw80Evz7ZH4RjMKHXgio/pubhtml?gid=66259830&single=true&widget=true&headers=false"></iframe> |
159 |
| - </paper-material> |
160 |
| - </div> |
161 |
| - </iron-pages> |
162 |
| - <script> |
163 |
| - document.addEventListener('WebComponentsReady', function() { |
164 |
| - var template = document.querySelector('template[is="dom-bind"]'); |
165 |
| - template.selected = 0; // selected is an index by default |
166 |
| - }); |
167 |
| - </script> |
168 |
| - </section> |
169 |
| - <section data-route="elim-matches" tabindex="-1"> |
170 |
| - <paper-tabs id="match-tabs" selected="{{selected}}"> |
171 |
| - <paper-tab>ALLIANCES</paper-tab> |
172 |
| - </paper-tabs> |
173 |
| - <iron-pages id="matches-page" selected="{{selected}}"> |
174 |
| - |
175 |
| - <div> |
176 |
| - <paper-material elevation="1"> |
177 |
| - <iframe width="100%" height="600px" src="https://docs.google.com/spreadsheets/d/e/2PACX-1vTYGiiplKYPIQpGZ7fRHX9oUQCarTgkSSaE1naEt6EwORDZidZeAYp5atSrqw80Evz7ZH4RjMKHXgio/pubhtml?gid=1772395932&single=true"></iframe> |
178 |
| - </paper-material> |
179 |
| - |
180 |
| - |
181 |
| - </div> |
182 |
| - </iron-pages> |
183 |
| - <script> |
184 |
| - document.addEventListener('WebComponentsReady', function() { |
185 |
| - var template = document.querySelector('template[is="dom-bind"]'); |
186 |
| - template.selected = 0; // selected is an index by default |
187 |
| - }); |
188 |
| - </script> |
189 |
| - </section> |
190 |
| - |
191 |
| - <!-- |
192 |
| - <section data-route="rankings" tabindex="-1"> |
193 |
| - <paper-tab>Rankings</paper-tab> |
194 |
| - <div> |
195 |
| - |
196 |
| - <paper-material elevation="1"> |
197 |
| - <iframe width="100%" height="600px" src="https://docs.google.com/spreadsheets/d/e/2PACX-1vTYGiiplKYPIQpGZ7fRHX9oUQCarTgkSSaE1naEt6EwORDZidZeAYp5atSrqw80Evz7ZH4RjMKHXgio/pubhtml?gid=1726883378&single=true&widget=true&headers=false"></iframe> |
198 |
| - </paper-material> |
199 |
| - </div> |
200 |
| - </section>--> |
201 |
| - |
| 34 | + </div> |
202 | 35 |
|
203 |
| - <section data-route="livestream" tabindex="-1"> |
204 |
| - <paper-material elevation="1"> |
205 |
| - <h2>Livestream</h2> |
206 |
| - <div class="video-wrap"><a class="embedly-card" href="https://www.twitch.tv/pierobotics">PiERobotics</a> |
207 |
| - <iframe |
208 |
| - src="https://www.twitch.tv/pierobotics" |
209 |
| - height="<height>" |
210 |
| - width="<width>" |
211 |
| - allowfullscreen> |
212 |
| - </iframe> |
213 |
| - </div> |
214 |
| - </paper-material> |
215 |
| - </section> |
216 |
| - <section data-route="license" tabindex="-1"> |
217 |
| - <paper-material elevation="1"> |
218 |
| - <h2 id="license">License</h2> |
219 |
| - <p>Everything in this repo is BSD style license unless otherwise specified.</p> |
220 |
| - <p>Copyright (c) 2015 The Polymer Authors. All rights reserved.</p> |
221 |
| - <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:</p> |
222 |
| - <ul> |
223 |
| - <li>Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.</li> |
224 |
| - <li>Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.</li> |
225 |
| - <li>Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.</li> |
226 |
| - </ul> |
227 |
| - <p>THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
228 |
| - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE |
229 |
| - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF |
230 |
| - THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</p> |
231 |
| - </paper-material> |
232 |
| - </section> |
233 |
| - </iron-pages> |
234 |
| - </div> |
235 |
| - </paper-scroll-header-panel> |
236 |
| - </paper-drawer-panel> |
237 |
| - <paper-toast id="toast"><span class="toast-hide-button" role="button" tabindex="0" onclick="app.$.toast.hide()">Ok</span></paper-toast> |
238 |
| - </template> |
239 |
| - <script src="scripts/app.js"></script> |
240 |
| - <script> |
241 |
| - (function(i, s, o, g, r, a, m) { |
242 |
| - i['GoogleAnalyticsObject'] = r; |
243 |
| - i[r] = i[r] || function() { |
244 |
| - (i[r].q = i[r].q || []).push(arguments) |
245 |
| - }, i[r].l = 1 * new Date(); |
246 |
| - a = s.createElement(o), |
247 |
| - m = s.getElementsByTagName(o)[0]; |
248 |
| - a.async = 1; |
249 |
| - a.src = g; |
250 |
| - m.parentNode.insertBefore(a, m) |
251 |
| - })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga'); |
252 |
| - ga('create', 'UA-35543006-1', 'auto'); |
253 |
| - ga('send', 'pageview'); |
254 |
| - </script> |
255 | 36 | </body>
|
256 |
| - |
257 | 37 | </html>
|
0 commit comments