-
Notifications
You must be signed in to change notification settings - Fork 0
/
message_conversation_client2.html
420 lines (326 loc) · 21.6 KB
/
message_conversation_client2.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
<!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.0">
<title>Home</title>
<!--Gilroy Font -->
<link rel="stylesheet" href="assets/fonts/gilroy-css/stylesheet.css">
<!-- Google font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- swiper Js CSS -->
<link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css" />
<!-- Boostrap 5.0.2 -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- JQuery Ui -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css" integrity="sha512-aOG0c6nPNzGk+5zjwyJaoRUgCdOrfSDhmMID2u4+OIslr0GjpLKo7Xm0Ao3xmpM4T8AmIouRkqwj1nrdVsLKEQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- AnimateCSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<!-- Custome Select Box -->
<link rel="stylesheet" href="assets/custom-select/css/style.css">
<!-- Main Style Sheet -->
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/responsive.css">
</head>
<body v-fixedHeight3>
<div id="v-app">
<div class="v-page d-flex flex-column ">
<!-- Top -->
<div class="top d-flex px-4 py-2 style-border-bottom" style="flex-shrink: 0;height:unset">
<div class="conversation-top">
<div class="profile-pic active">
<img src="https://images.pexels.com/photos/1553783/pexels-photo-1553783.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1" alt="">
</div>
<div class="details">
<div class=" width-fit-content iconText right"><p class="txt fw-800 font-size-3x5 text-center m-0 txt-line-1">Eric McDonald</p><span class="tc-ok font-size-4"><span class="iconify" data-icon="feather:check-circle"></span> </span></div>
<p class=" txt-line-2 status online ">Online</p>
</div>
</div>
<button class="trigger-history-back btn-top" left><span class="iconify" data-icon="feather:arrow-left"></span></button>
<div right class="d-flex">
<button class="btn-top v-link-page" vref="activeOrders"><span class="iconify" data-icon="feather:file-text"></span></button>
<button class="btn-top"><span class="iconify" data-icon="feather:more-vertical"></span></button>
</div>
</div>
<!-- Create offer Button can be removed at any time -->
<div class="custom-offer-top d-none">
<button class="v-link-page" vref="CreateCustomOffer">
<span><span class="iconify" data-icon="feather:plus-circle"></span></span> Create Custom Offer
</button>
</div>
<!-- Body -->
<div class="body scroll-y bg-light-grey">
<!-- Swiper -->
<div class="swiper v-slick-page width-100 height-100">
<div class="swiper-wrapper">
<!-- Body Inner -->
<div class="swiper-slide height-auto">
<div class="txt-msg left">
<p>Hello Ella, how are you doing? I came across your request and would like to help you achieve it</p>
<span>3:32pm</span>
</div>
<div class="txt-msg right">
<p>Wow! Thank you so much</p>
<span>3:38pm</span>
</div>
<div class="txt-msg left">
<p>I'll manage the instagram acount of your business. Upload engaging images and messages</p>
<span>3:51pm</span>
</div>
<div class="txt-msg right">
<p>Alright send an offer so we can work together</p>
<span>4:04pm</span>
</div>
<div class="msg-offer left">
<div>
<h1>I can manage and create content for your instagram account</h1>
<div class="details">
<div><span>Price</span><span>$15</span></div>
<div><span>Delivery</span><span>5 Days</span></div>
<div><span>Revisions</span><span>3</span></div>
<div><span>Extras</span><span>User Engagement, Account Customisation, User Testing</span></div>
</div>
<button class="v-link-page d-none" vref="viewCustomeOrder">View Custom Order</button>
<span class="accepted">Accepted</span>
</div>
<span>4:04pm</span>
</div>
</div>
</div>
<div class="swiper-scrollbar" style="opacity:.3;"></div>
</div>
</div>
<!-- Bottom -->
<div class="bottom d-flex justify-content-between align-items-center p-2 height-fit-content conversation-bottom style-border-top radius-10">
<button><span class="iconify" data-icon="feather:smile"></span></button>
<input type="text" placeholder="Enter Text Here">
<button><span class="iconify" data-icon="feather:send"></span></button>
</div>
</div>
<!-- Create Custom Offer Container-->
<div class="v-page vPages buyer-search-filter trigger-back" vpage-name="CreateCustomOffer">
<div class="inner">
<div class="main">
<div class="swiper v-slick-page width-100 height-100" >
<div class="swiper-wrapper">
<!-- Body Inner -->
<div class="swiper-slide height-auto" style="padding:1rem 2.5rem ;">
<!-- PAGE TITLE -->
<h1 class="title">Create Custom Offer</h1>
<form action="">
<div class="v-form-select m-0">
<label for="location">Title</label>
<div class="d-flex justify-content-between">
<div class="v-form-input">
<textarea class=" font-size-2"></textarea>
</div>
</div>
</div>
<div class="v-form-select m-0">
<label for="location">Extra(3)</label>
<div class="d-flex justify-content-between">
<div class="v-form-input">
<textarea class=" font-size-2" placeholder="Add text seperated by comma"></textarea>
</div>
</div>
</div>
<div class="v-form-select">
<label for="location">Conditions</label>
<div class="container-in-form font-size-2">
<div >
<div>Number of Revisions</div>
<div class="d-flex" ><input type="text" style="width:40px;border-radius: .2rem; padding-left:.2rem;"></div>
</div>
<div >
<div>Delivery Time</div>
<div class="d-flex" ><span>Days</span><input type="text" style="width:40px;border-radius: .2rem;margin-left:.3rem; padding-left:.2rem;"></div>
</div>
<div >
<div>Amount</div>
<div class="d-flex" ><span>$</span><input type="text" style="width:40px;border-radius: .2rem;margin-left:.3rem; padding-left:.2rem;"></div>
</div>
<div >
<div>Request Requirement</div>
<div class="d-flex" >
<!-- Rounded switch -->
<label class="switch blue">
<input type="checkbox">
<span class="slider round"></span>
</label>
</div>
</div>
</div>
</div>
<div class="v-form-select m-0">
<label for="location">Add A Description To Your Offer</label>
<div class="d-flex justify-content-between">
<div class="v-form-input">
<textarea class=" font-size-2"></textarea>
</div>
</div>
</div>
</form>
</div>
</div>
<div class="swiper-scrollbar" style="opacity:.3;"></div>
</div>
</div>
<div class="bottom" >
<div class=" width-100" style="padding: 0 2.5rem;">
<div class="width-100 grid-center pe-1"><button class="v-submit-btn-default width-100">Update Offer</button></div>
</div>
</div>
</div>
</div>
<!-- Custom Order Page -->
<div class="v-page vPages buyer-search-filter trigger-back" vpage-name="viewCustomeOrder">
<div class="inner">
<div class="main">
<div class="swiper v-slick-page width-100 height-100">
<div class="swiper-wrapper">
<!-- Body Inner -->
<div class="swiper-slide height-auto" style="padding:1rem 2.5rem ;">
<!-- PAGE TITLE -->
<h1 class="title">View Custom Order</h1>
<form action="">
<div class="v-form-select m-0">
<label for="location">Title</label>
<div class="d-flex justify-content-between">
<div class="v-form-input">
<textarea disabled class=" font-size-2">I am managing and creating content for your instagram account</textarea>
</div>
</div>
</div>
<div class="v-form-select m-0">
<label for="location">Extra(3)</label>
<div class="d-flex justify-content-between">
<div class="v-form-input">
<textarea disabled class=" font-size-2">User Engagement, Account Customisation, User Testing</textarea>
</div>
</div>
</div>
<div class="v-form-select">
<label for="location">Conditions</label>
<div class="container-in-form font-size-2">
<div >
<div>Number of Revisions</div>
<div>3</div>
</div>
<div >
<div>Delivery Time</div>
<div>30 Days</div>
</div>
<div >
<div>Amount</div>
<div class="tc-ok">$5,000</div>
</div>
</div>
</div>
<div class="v-form-select m-0">
<label for="location">Description</label>
<div class="d-flex justify-content-between">
<div class="v-form-input">
<textarea disabled class=" font-size-2"></textarea>
</div>
</div>
</div>
</form>
</div>
</div>
<div class="swiper-scrollbar" style="opacity:.3;"></div>
</div>
</div>
<div class="bottom" >
<div class="d-flex width-100" style="padding: 0 2.5rem;">
<a href="message_conversation_client2.html" class="width-100 grid-center pe-1"><button class="v-submit-btn-default width-100 bg-ok btn-border-ok">Accept Offer</button></a>
<div class="width-100 grid-center ps-1"><button class="v-submit-btn-default width-100 btn-border-bad bg-bad tc-bad">Reject Offer</button></div>
</div>
</div>
</div>
</div>
<!-- Active Orders Container-->
<div class="v-page vPages buyer-search-filter trigger-back" vpage-name="activeOrders">
<div class="inner">
<div class="main">
<div class="swiper v-slick-page width-100 height-100">
<div class="swiper-wrapper">
<!-- Body Inner -->
<div class="swiper-slide height-auto" style="padding:1rem .1rem ;">
<!-- PAGE TITLE -->
<h1 class="title mb-3">Active Orders</h1>
<!-- Order Front Design -->
<div class=" order-front-design">
<a href="order_timeline_pending_clients.html">
<div class="profile-pic active">
<img src="https://images.pexels.com/photos/1553783/pexels-photo-1553783.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1" alt="">
</div>
<div class="details">
<div>
<div>
<h1 class="txt-line-2">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Veritatis laudantium vero deleniti odit incidunt ratione earum facere quaerat, voluptate porro animi doloribus dignissimos hic distinctio maxime quasi atque corporis. Ut.</h1>
<p class=" txt-line-2 ">Eric McDonald</p>
</div>
<div><span class="red-dot"></span></div>
</div>
<div>
<span>$8</span>
<span class="tc-primary">In progress</span>
</div>
</div>
</a>
</div>
<div class=" order-front-design">
<a href="#">
<div class="profile-pic active">
<img src="https://bestprofilepictures.com/wp-content/uploads/2020/07/Cool-Profile-Picture-For-Instagram-768x784.jpg" alt="">
</div>
<div class="details">
<div>
<div>
<h1 class="txt-line-2">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Veritatis laudantium vero deleniti odit incidunt ratione earum facere quaerat, voluptate porro animi doloribus dignissimos hic distinctio maxime quasi atque corporis. Ut.</h1>
<p class=" txt-line-2 ">Duncan Willimas</p>
</div>
<div><span class="red-dot"></span></div>
</div>
<div>
<span>$8</span>
<span class="tc-ok">Completed</span>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="swiper-scrollbar" style="opacity:.3;"></div>
</div>
</div>
</div>
</div>
</div>
<!-- FullScreen button -->
<button id="fullscreen-toggle" class=""><span><span class="iconify" data-icon="material-symbols:fullscreen-rounded"></span></span><span active><span class="iconify" data-icon="material-symbols:fullscreen-exit-rounded"></span></span></button>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
<!-- Iconify -->
<script src="https://code.iconify.design/2/2.2.1/iconify.min.js"></script>
<!-- SwiperJs Javascript -->
<script src="https://unpkg.com/swiper@8/swiper-bundle.min.js"></script>
<!-- JQuery UI -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js" integrity="sha512-uto9mlQzrs59VwILcLiRYeLKPPbS/bT71da/OEBYEwcdNUk8jYIy+D176RYoop1Da+f9mvkYrmj5MCLZWEtQuA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- BodyMoving Animation -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.7.7/lottie.min.js" integrity="sha512-HDCfX3BneBQMfloBfluMQe6yio+OfXnbKAbI0SnfcZ4YfZL670nc52Aue1bBhgXa+QdWsBdhMVR2hYROljf+Fg==" crossorigin="anonymous"></script>
<!-- Lotti Player -->
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<!-- Custome Select Box -->
<script src="assets/custom-select/js/custom-selectbox.js"></script>
<script src="assets/js/functions.js"></script>
<script src="assets/js/app_functions.js"></script>
<!-- Main Javascript -->
<script src="assets/js/script.js"></script>
</body>
</html>