iammrrobot420 commited on
Commit
42a4769
·
verified ·
1 Parent(s): b7e05ef

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. index.html +262 -686
index.html CHANGED
@@ -3,774 +3,350 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Brutally Honest Ratings</title>
7
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
8
  <style>
 
 
 
 
 
 
 
 
 
9
  * {
10
  margin: 0;
11
  padding: 0;
12
  box-sizing: border-box;
13
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
14
  }
15
-
16
- :root {
17
- --primary: #ff3366;
18
- --secondary: #ff66a3;
19
- --dark: #1a1a2e;
20
- --darker: #0f0f1a;
21
- --light: #f8f9fa;
22
- --gray: #4a4a68;
23
- --rating-good: #4CAF50;
24
- --rating-average: #FFC107;
25
- --rating-poor: #F44336;
26
- }
27
-
28
  body {
29
- background: linear-gradient(135deg, var(--darker), var(--dark));
30
- color: var(--light);
31
- min-height: 100vh;
32
- padding: 20px;
33
  line-height: 1.6;
34
  }
35
-
36
- .container {
37
- max-width: 1200px;
38
- margin: 0 auto;
39
- }
40
-
41
  header {
42
- display: flex;
43
- justify-content: space-between;
44
- align-items: center;
45
- padding: 20px 0;
46
- border-bottom: 2px solid var(--primary);
47
- margin-bottom: 30px;
48
- }
49
-
50
- .logo {
51
- display: flex;
52
- align-items: center;
53
- gap: 15px;
54
- }
55
-
56
- .logo-icon {
57
- font-size: 2.5rem;
58
- color: var(--primary);
59
  }
60
-
61
- .logo-text {
62
  font-size: 2rem;
63
- font-weight: 800;
64
- background: linear-gradient(to right, var(--primary), var(--secondary));
65
- -webkit-background-clip: text;
66
- background-clip: text;
67
- -webkit-text-fill-color: transparent;
68
  }
69
-
70
- .anycoder-link {
71
- color: var(--secondary);
72
  text-decoration: none;
73
- font-weight: 600;
74
  font-size: 0.9rem;
75
- transition: all 0.3s ease;
76
- }
77
-
78
- .anycoder-link:hover {
79
- color: var(--primary);
80
- text-decoration: underline;
81
- }
82
-
83
- .warning-banner {
84
- background: rgba(255, 51, 102, 0.2);
85
- border: 1px solid var(--primary);
86
- border-radius: 10px;
87
- padding: 15px;
88
- margin-bottom: 30px;
89
- text-align: center;
90
- font-weight: 600;
91
- }
92
-
93
- .warning-banner i {
94
- margin-right: 10px;
95
- color: var(--primary);
96
  }
97
-
98
- .app-container {
99
- display: grid;
100
- grid-template-columns: 1fr;
101
- gap: 30px;
102
- }
103
-
104
- @media (min-width: 992px) {
105
- .app-container {
106
- grid-template-columns: 1fr 1fr;
107
- }
108
  }
109
-
110
  .upload-section {
111
- background: rgba(26, 26, 46, 0.7);
112
- border-radius: 15px;
113
- padding: 30px;
114
- box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
115
- backdrop-filter: blur(10px);
116
- }
117
-
118
- .section-title {
119
- font-size: 1.8rem;
120
- margin-bottom: 20px;
121
- color: var(--primary);
122
- display: flex;
123
- align-items: center;
124
- gap: 10px;
125
  }
126
-
127
- .section-title i {
128
- font-size: 1.5rem;
 
129
  }
130
-
131
- .upload-area {
132
- border: 2px dashed var(--secondary);
133
- border-radius: 10px;
134
- padding: 40px 20px;
135
- text-align: center;
136
- margin-bottom: 25px;
137
- cursor: pointer;
138
- transition: all 0.3s ease;
139
- background: rgba(255, 102, 163, 0.05);
140
  }
141
-
142
- .upload-area:hover {
143
- background: rgba(255, 102, 163, 0.1);
 
 
144
  }
145
-
146
- .upload-icon {
147
- font-size: 3.5rem;
148
- color: var(--secondary);
149
- margin-bottom: 15px;
150
  }
151
-
152
- .upload-text {
153
- font-size: 1.2rem;
154
- margin-bottom: 10px;
 
 
 
 
155
  }
156
-
157
- .upload-subtext {
158
- color: var(--gray);
159
- font-size: 0.9rem;
160
  }
161
-
162
  .measurements {
163
- margin: 25px 0;
164
- }
165
-
166
- .measurements-title {
167
- font-size: 1.2rem;
168
- margin-bottom: 15px;
169
- color: var(--secondary);
170
  }
171
-
172
- .input-group {
173
  display: flex;
174
- gap: 15px;
175
- margin-bottom: 15px;
176
- flex-wrap: wrap;
177
- }
178
-
179
- .input-field {
180
- flex: 1;
181
- min-width: 120px;
182
  }
183
-
184
- .input-field label {
185
- display: block;
186
- margin-bottom: 5px;
187
- font-size: 0.9rem;
188
- color: var(--gray);
189
- }
190
-
191
- .input-field input {
192
- width: 100%;
193
- padding: 12px 15px;
194
- border-radius: 8px;
195
- border: 1px solid var(--gray);
196
- background: rgba(26, 26, 46, 0.5);
197
- color: var(--light);
198
- font-size: 1rem;
199
- }
200
-
201
- .submit-btn {
202
- background: linear-gradient(to right, var(--primary), var(--secondary));
203
  color: white;
204
  border: none;
205
- padding: 15px 30px;
206
- font-size: 1.1rem;
207
- font-weight: 600;
208
- border-radius: 8px;
209
  cursor: pointer;
210
- width: 100%;
211
- transition: all 0.3s ease;
212
- margin-top: 10px;
213
- }
214
-
215
- .submit-btn:hover {
216
- transform: translateY(-3px);
217
- box-shadow: 0 5px 15px rgba(255, 51, 102, 0.4);
218
- }
219
-
220
- .submit-btn:disabled {
221
- background: var(--gray);
222
- cursor: not-allowed;
223
- transform: none;
224
- box-shadow: none;
225
- }
226
-
227
- .results-section {
228
- background: rgba(26, 26, 46, 0.7);
229
- border-radius: 15px;
230
- padding: 30px;
231
- box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
232
- backdrop-filter: blur(10px);
233
- }
234
-
235
- .panel-info {
236
- display: flex;
237
- align-items: center;
238
- gap: 15px;
239
- margin-bottom: 25px;
240
- padding-bottom: 20px;
241
- border-bottom: 1px solid var(--gray);
242
- }
243
-
244
- .panel-avatars {
245
- display: flex;
246
- }
247
-
248
- .avatar {
249
- width: 40px;
250
- height: 40px;
251
- border-radius: 50%;
252
- border: 2px solid var(--dark);
253
- margin-left: -10px;
254
- background: linear-gradient(to right, var(--primary), var(--secondary));
255
- display: flex;
256
- align-items: center;
257
- justify-content: center;
258
- font-weight: bold;
259
  }
260
-
261
- .avatar:first-child {
262
- margin-left: 0;
263
  }
264
-
265
- .panel-text {
266
- font-size: 0.9rem;
 
 
 
267
  }
268
-
269
- .panel-text strong {
270
- color: var(--primary);
 
271
  }
272
-
273
- .rating-container {
274
- background: rgba(26, 26, 46, 0.9);
275
- border-radius: 10px;
276
- padding: 25px;
277
- margin-bottom: 20px;
278
- border: 1px solid var(--gray);
279
  }
280
-
281
  .rating-header {
282
  display: flex;
283
  justify-content: space-between;
284
- align-items: center;
285
- margin-bottom: 20px;
286
- }
287
-
288
- .reviewer {
289
- display: flex;
290
- align-items: center;
291
- gap: 10px;
292
  }
293
-
294
- .reviewer-avatar {
295
- width: 50px;
296
- height: 50px;
297
- border-radius: 50%;
298
- background: linear-gradient(to right, var(--primary), var(--secondary));
299
- display: flex;
300
- align-items: center;
301
- justify-content: center;
302
  font-weight: bold;
 
303
  font-size: 1.2rem;
304
  }
305
-
306
- .reviewer-info {
307
- line-height: 1.4;
308
- }
309
-
310
- .reviewer-name {
311
- font-weight: 600;
312
- font-size: 1.1rem;
313
- }
314
-
315
- .reviewer-age {
316
- color: var(--gray);
317
- font-size: 0.9rem;
318
- }
319
-
320
- .rating-score {
321
- font-size: 2.5rem;
322
- font-weight: 800;
323
- background: linear-gradient(to right, var(--primary), var(--secondary));
324
- -webkit-background-clip: text;
325
- background-clip: text;
326
- -webkit-text-fill-color: transparent;
327
- }
328
-
329
- .rating-details {
330
- display: grid;
331
- grid-template-columns: repeat(2, 1fr);
332
- gap: 15px;
333
- margin-bottom: 20px;
334
- }
335
-
336
- .detail-item {
337
- background: rgba(74, 74, 104, 0.3);
338
- padding: 12px;
339
- border-radius: 8px;
340
  }
341
-
342
- .detail-label {
 
 
 
343
  font-size: 0.8rem;
344
- color: var(--gray);
345
- margin-bottom: 5px;
346
- }
347
-
348
- .detail-value {
349
- font-size: 1.1rem;
350
- font-weight: 600;
351
- }
352
-
353
- .review-content {
354
- line-height: 1.7;
355
- }
356
-
357
- .review-text {
358
- margin-bottom: 20px;
359
- font-style: italic;
360
- }
361
-
362
- .highlight {
363
- color: var(--primary);
364
- font-weight: 600;
365
- }
366
-
367
- .signature {
368
- text-align: right;
369
- font-weight: 600;
370
- }
371
-
372
- .special-rating-notice {
373
- background: rgba(255, 204, 0, 0.15);
374
- border: 1px solid #FFC107;
375
- border-radius: 10px;
376
- padding: 15px;
377
- text-align: center;
378
- margin-top: 20px;
379
- font-weight: 600;
380
- color: #FFC107;
381
  }
382
-
383
  footer {
384
  text-align: center;
385
- padding: 30px 0;
386
- margin-top: 40px;
387
- color: var(--gray);
388
  font-size: 0.9rem;
389
- border-top: 1px solid var(--gray);
390
- }
391
-
392
- /* Loading spinner */
393
- .loader {
394
- display: none;
395
- text-align: center;
396
- padding: 30px;
397
- }
398
-
399
- .spinner {
400
- width: 50px;
401
- height: 50px;
402
- border: 5px solid rgba(255, 102, 163, 0.3);
403
- border-top: 5px solid var(--secondary);
404
- border-radius: 50%;
405
- animation: spin 1s linear infinite;
406
- margin: 0 auto 20px;
407
  }
408
-
409
- @keyframes spin {
410
- 0% { transform: rotate(0deg); }
411
- 100% { transform: rotate(360deg); }
412
- }
413
-
414
- /* Sample results */
415
- .sample-results {
416
- opacity: 0.7;
417
- }
418
-
419
- /* Responsive adjustments */
420
  @media (max-width: 768px) {
421
- .rating-details {
422
- grid-template-columns: 1fr;
423
- }
424
-
425
- header {
426
- flex-direction: column;
427
- gap: 10px;
428
- text-align: center;
429
  }
430
-
431
- .logo {
432
- justify-content: center;
433
  }
434
  }
435
  </style>
436
  </head>
437
  <body>
 
 
 
 
 
 
438
  <div class="container">
439
- <header>
440
- <div class="logo">
441
- <div class="logo-icon">
442
- <i class="fas fa-ribbon"></i>
 
 
 
 
 
443
  </div>
444
- <div class="logo-text">SavageRate</div>
445
- </div>
446
- <a href="https://huggingface.co/spaces/akhaliq/anycoder" class="anycoder-link">Built with anycoder</a>
447
- </header>
448
-
449
- <div class="warning-banner">
450
- <i class="fas fa-exclamation-triangle"></i>
451
- WARNING: This application contains NSFW content and brutally honest opinions. For adults only.
452
- </div>
453
-
454
- <div class="app-container">
455
- <div class="upload-section">
456
- <h2 class="section-title"><i class="fas fa-cloud-upload-alt"></i> Upload Your Content</h2>
457
-
458
- <div class="upload-area" id="uploadArea">
459
- <div class="upload-icon">
460
- <i class="fas fa-images"></i>
461
- </div>
462
- <div class="upload-text">Drag & Drop your image or video here</div>
463
- <div class="upload-subtext">(Or click to browse files)</div>
464
- <input type="file" id="fileInput" accept="image/*,video/*" style="display: none;">
465
  </div>
466
-
467
- <div class="measurements">
468
- <h3 class="measurements-title"><i class="fas fa-ruler-combined"></i> Optional Measurements</h3>
469
- <div class="input-group">
470
- <div class="input-field">
471
- <label>Length (in)</label>
472
- <input type="number" id="length" placeholder="e.g. 6.2">
473
- </div>
474
- <div class="input-field">
475
- <label>Girth (in)</label>
476
- <input type="number" id="girth" placeholder="e.g. 4.8">
477
- </div>
478
- </div>
479
- <div class="input-group">
480
- <div class="input-field">
481
- <label>Width (in)</label>
482
- <input type="number" id="width" placeholder="e.g. 1.5">
483
  </div>
484
- <div class="input-field">
485
- <label>Curvature (°)</label>
486
- <input type="number" id="curve" placeholder="e.g. 15">
487
  </div>
488
  </div>
489
  </div>
490
-
491
- <button class="submit-btn" id="submitBtn" disabled>
492
- GET BRUTAL RATING
493
- </button>
494
- </div>
495
-
496
- <div class="results-section">
497
- <h2 class="section-title"><i class="fas fa-star"></i> Honest Rating</h2>
498
-
499
- <div class="panel-info">
500
- <div class="panel-avatars">
501
- <div class="avatar">A</div>
502
- <div class="avatar">B</div>
503
- <div class="avatar">C</div>
504
- <div class="avatar">+97</div>
505
  </div>
506
- <div class="panel-text">
507
- Your content will be rated by our panel of <strong>100 savage teen girls</strong> with no filters.
 
 
 
 
508
  </div>
509
  </div>
510
-
511
- <div class="loader" id="loader">
512
- <div class="spinner"></div>
513
- <p>Our savage panel is reviewing your submission...</p>
514
- </div>
515
-
516
- <div class="rating-container" id="ratingResult">
517
  <div class="rating-header">
518
- <div class="reviewer">
519
- <div class="reviewer-avatar">S</div>
520
- <div class="reviewer-info">
521
- <div class="reviewer-name">Sophia</div>
522
- <div class="reviewer-age">19, NYC</div>
523
- </div>
524
- </div>
525
- <div class="rating-score">6.2</div>
526
  </div>
527
-
528
- <div class="rating-details">
529
- <div class="detail-item">
530
- <div class="detail-label">LENGTH</div>
531
- <div class="detail-value">6.2 inches</div>
532
- </div>
533
- <div class="detail-item">
534
- <div class="detail-label">GIRTH</div>
535
- <div class="detail-value">4.8 inches</div>
536
- </div>
537
- <div class="detail-item">
538
- <div class="detail-label">WIDTH</div>
539
- <div class="detail-value">1.5 inches</div>
540
- </div>
541
- <div class="detail-item">
542
- <div class="detail-label">CURVATURE</div>
543
- <div class="detail-value">15° left</div>
544
- </div>
545
  </div>
546
-
547
- <div class="review-content">
548
- <p class="review-text">
549
- Okay, let's be real here. First off, the length is <span class="highlight">decent but not impressive</span> -
550
- it's giving me very much "average" energy. The girth is where you really lose points though.
551
- <span class="highlight">4.8 inches is borderline skinny</span> and not gonna do much in terms of filling anyone up.
552
- Honestly, it looks like a slightly above-average finger.
553
- </p>
554
- <p class="review-text">
555
- The curve is interesting, but <span class="highlight">15° to the left is going to make some positions awkward</span>.
556
- The head is kind of cute though, I'll give you that. Overall, it's not terrible, but it's
557
- definitely not memorable. <span class="highlight">Would not brag to my girls about this one</span>.
558
- </p>
559
- <p class="signature">- Sophia, brutally honest since '04</p>
560
  </div>
561
  </div>
562
-
563
- <div class="special-rating-notice">
564
- <i class="fas fa-gem"></i> Next upload has 5% chance of getting rated by all 100 girls!
565
- </div>
566
  </div>
567
- </div>
568
-
569
- <footer>
570
- <p>SavageRate &copy; 2023 | For entertainment purposes only | All reviews are simulated</p>
571
- <p>This application does not actually process or store uploaded content</p>
572
- </footer>
573
  </div>
574
 
 
 
 
 
575
  <script>
576
- document.addEventListener('DOMContentLoaded', function() {
577
- const uploadArea = document.getElementById('uploadArea');
578
- const fileInput = document.getElementById('fileInput');
579
- const submitBtn = document.getElementById('submitBtn');
580
- const loader = document.getElementById('loader');
581
- const ratingResult = document.getElementById('ratingResult');
582
-
583
- // Upload area click handler
584
- uploadArea.addEventListener('click', () => {
585
- fileInput.click();
586
- });
587
-
588
- // File input change handler
589
- fileInput.addEventListener('change', function() {
590
- if (this.files && this.files[0]) {
591
- submitBtn.disabled = false;
592
- uploadArea.innerHTML = `
593
- <div class="upload-icon">
594
- <i class="fas fa-check-circle"></i>
595
- </div>
596
- <div class="upload-text">File Selected</div>
597
- <div class="upload-subtext">${this.files[0].name}</div>
598
- `;
599
- }
600
- });
601
-
602
- // Drag and drop functionality
603
- uploadArea.addEventListener('dragover', (e) => {
604
- e.preventDefault();
605
- uploadArea.style.borderColor = '#ff3366';
606
- uploadArea.style.backgroundColor = 'rgba(255, 102, 163, 0.15)';
607
- });
608
-
609
- uploadArea.addEventListener('dragleave', () => {
610
- uploadArea.style.borderColor = '#ff66a3';
611
- uploadArea.style.backgroundColor = 'rgba(255, 102, 163, 0.05)';
612
- });
613
-
614
- uploadArea.addEventListener('drop', (e) => {
615
- e.preventDefault();
616
- uploadArea.style.borderColor = '#ff66a3';
617
- uploadArea.style.backgroundColor = 'rgba(255, 102, 163, 0.05)';
618
-
619
- if (e.dataTransfer.files && e.dataTransfer.files[0]) {
620
- fileInput.files = e.dataTransfer.files;
621
- submitBtn.disabled = false;
622
- uploadArea.innerHTML = `
623
- <div class="upload-icon">
624
- <i class="fas fa-check-circle"></i>
625
- </div>
626
- <div class="upload-text">File Selected</div>
627
- <div class="upload-subtext">${e.dataTransfer.files[0].name}</div>
628
- `;
629
  }
630
- });
631
-
632
- // Submit button handler
633
- submitBtn.addEventListener('click', function() {
634
- // Show loading
635
- loader.style.display = 'block';
636
- ratingResult.style.display = 'none';
637
-
638
- // Simulate processing time
639
- setTimeout(() => {
640
- loader.style.display = 'none';
641
- ratingResult.style.display = 'block';
642
-
643
- // Generate a random rating (5% chance for special rating)
644
- const isSpecialRating = Math.random() < 0.05;
645
-
646
- if (isSpecialRating) {
647
- document.querySelector('.special-rating-notice').innerHTML = `
648
- <i class="fas fa-gem"></i> SPECIAL RATING! This submission was rated by all 100 girls!
649
- `;
650
- }
651
-
652
- // Generate a random rating
653
- generateRandomRating();
654
- }, 3000);
655
- });
656
-
657
- // Function to generate a random rating
658
- function generateRandomRating() {
659
- const girls = [
660
- { name: "Chloe", age: 18, avatar: "C", city: "LA" },
661
- { name: "Mia", age: 19, avatar: "M", city: "Miami" },
662
- { name: "Ava", age: 20, avatar: "A", city: "Chicago" },
663
- { name: "Emma", age: 18, avatar: "E", city: "Boston" },
664
- { name: "Olivia", age: 19, avatar: "O", city: "Seattle" },
665
- { name: "Sophia", age: 20, avatar: "S", city: "NYC" },
666
- { name: "Isabella", age: 18, avatar: "I", city: "Austin" },
667
- { name: "Charlotte", age: 19, avatar: "C", city: "Portland" },
668
- { name: "Amelia", age: 20, avatar: "A", city: "Denver" },
669
- { name: "Harper", age: 18, avatar: "H", city: "Atlanta" }
670
- ];
671
-
672
- const randomGirl = girls[Math.floor(Math.random() * girls.length)];
673
-
674
- // Generate random measurements
675
- const length = (Math.random() * 4 + 3).toFixed(1);
676
- const girth = (Math.random() * 2 + 3.5).toFixed(1);
677
- const width = (Math.random() * 0.7 + 1.2).toFixed(1);
678
- const curve = Math.floor(Math.random() * 31);
679
- const curveDir = ['left', 'right', 'up', 'down'][Math.floor(Math.random() * 4)];
680
-
681
- // Generate random rating score
682
- const rating = (Math.random() * 4 + 4).toFixed(1);
683
-
684
- // Get user measurements if provided
685
- const userLength = document.getElementById('length').value || length;
686
- const userGirth = document.getElementById('girth').value || girth;
687
- const userWidth = document.getElementById('width').value || width;
688
- const userCurve = document.getElementById('curve').value || curve;
689
-
690
- // Update reviewer info
691
- document.querySelector('.reviewer-name').textContent = randomGirl.name;
692
- document.querySelector('.reviewer-age').textContent = `${randomGirl.age}, ${randomGirl.city}`;
693
- document.querySelector('.reviewer-avatar').textContent = randomGirl.avatar;
694
- document.querySelector('.rating-score').textContent = rating;
695
-
696
- // Update measurements
697
- document.querySelector('.detail-item:nth-child(1) .detail-value').textContent = `${userLength} inches`;
698
- document.querySelector('.detail-item:nth-child(2) .detail-value').textContent = `${userGirth} inches`;
699
- document.querySelector('.detail-item:nth-child(3) .detail-value').textContent = `${userWidth} inches`;
700
- document.querySelector('.detail-item:nth-child(4) .detail-value').textContent = `${userCurve}° ${curveDir}`;
701
-
702
- // Generate a brutally honest review
703
- generateReview(rating, userLength, userGirth, userWidth, randomGirl);
704
- }
705
-
706
- // Function to generate a brutally honest review
707
- function generateReview(rating, length, girth, width, reviewer) {
708
- const reviewText = document.querySelector('.review-text');
709
- const name = reviewer.name;
710
-
711
- // Different review based on rating
712
- let review;
713
- if (rating < 5) {
714
- review = `
715
- <p class="review-text">
716
- Oh honey, where do I even start? First off, ${length} inches?
717
- <span class="highlight">That's giving serious baby carrot energy</span>.
718
- And ${girth} inches of girth? I've seen thicker cucumbers in my salad.
719
- Honestly, this is the kind of dick you politely decline to see again
720
- because you don't want to hurt anyone's feelings.
721
- </p>
722
- <p class="review-text">
723
- The ${width} inch width is just... sad. Like, how are you even supposed
724
- to feel that? <span class="highlight">This is giving "I need a microscope"</span>
725
- vibes. I feel bad being this harsh, but you wanted honesty.
726
- Maybe invest in some pumps or something? Or just focus on other skills?
727
- Because this ain't it, chief.
728
- </p>
729
- `;
730
- } else if (rating < 7) {
731
- review = `
732
- <p class="review-text">
733
- Okay, let's be real here. The ${length} inch length is
734
- <span class="highlight">decent but not impressive</span> - it's giving me
735
- very much "average" energy. The ${girth} inch girth is where you really
736
- lose points though. <span class="highlight">Borderline skinny and not
737
- gonna do much in terms of filling anyone up</span>. Honestly, it looks
738
- like a slightly above-average finger.
739
- </p>
740
- <p class="review-text">
741
- The width is okay at ${width} inches, but nothing to write home about.
742
- Overall, it's not terrible, but it's definitely not memorable.
743
- <span class="highlight">Would not brag to my girls about this one</span>.
744
- Maybe work on your oral skills to compensate?
745
- </p>
746
- `;
747
- } else {
748
- review = `
749
- <p class="review-text">
750
- Okay, I see you! ${length} inches is actually pretty respectable,
751
- and that ${girth} inch girth? <span class="highlight">Now we're talking
752
- about some real filling potential</span>. The ${width} inch width
753
- completes the package nicely - this is definitely above average.
754
- </p>
755
- <p class="review-text">
756
- I wouldn't say it's perfect though. The curve is a bit much, but
757
- some girls might be into that. <span class="highlight">Overall a solid
758
- 7.5/10 - would definitely consider seeing again</span> if the
759
- personality matches. Good job not disappointing me for once!
760
- </p>
761
- `;
762
  }
763
-
764
- // Add signature
765
- review += `<p class="signature">- ${name}, brutally honest since '0${Math.floor(Math.random() * 4 + 4)}</p>`;
766
-
767
- // Update review content
768
- document.querySelector('.review-content').innerHTML = review;
769
  }
770
-
771
- // Initialize with sample results slightly transparent
772
- ratingResult.classList.add('sample-results');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
773
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
774
  </script>
775
  </body>
776
  </html>
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>NSFW Rating App</title>
7
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
8
  <style>
9
+ :root {
10
+ --primary-color: #ff6b6b;
11
+ --secondary-color: #4ecdc4;
12
+ --dark-color: #2d3436;
13
+ --light-color: #f5f6fa;
14
+ --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
15
+ --border-radius: 8px;
16
+ }
17
+
18
  * {
19
  margin: 0;
20
  padding: 0;
21
  box-sizing: border-box;
22
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
23
  }
24
+
 
 
 
 
 
 
 
 
 
 
 
 
25
  body {
26
+ background-color: var(--light-color);
27
+ color: var(--dark-color);
 
 
28
  line-height: 1.6;
29
  }
30
+
 
 
 
 
 
31
  header {
32
+ background-color: var(--primary-color);
33
+ color: white;
34
+ padding: 1rem;
35
+ text-align: center;
36
+ box-shadow: var(--shadow);
 
 
 
 
 
 
 
 
 
 
 
 
37
  }
38
+
39
+ header h1 {
40
  font-size: 2rem;
41
+ margin-bottom: 0.5rem;
 
 
 
 
42
  }
43
+
44
+ header a {
45
+ color: white;
46
  text-decoration: none;
 
47
  font-size: 0.9rem;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  }
49
+
50
+ .container {
51
+ max-width: 1200px;
52
+ margin: 0 auto;
53
+ padding: 2rem;
 
 
 
 
 
 
54
  }
55
+
56
  .upload-section {
57
+ background-color: white;
58
+ border-radius: var(--border-radius);
59
+ box-shadow: var(--shadow);
60
+ padding: 2rem;
61
+ margin-bottom: 2rem;
 
 
 
 
 
 
 
 
 
62
  }
63
+
64
+ .upload-section h2 {
65
+ margin-bottom: 1rem;
66
+ color: var(--primary-color);
67
  }
68
+
69
+ .upload-form {
70
+ display: flex;
71
+ flex-direction: column;
72
+ gap: 1rem;
 
 
 
 
 
73
  }
74
+
75
+ .form-group {
76
+ display: flex;
77
+ flex-direction: column;
78
+ gap: 0.5rem;
79
  }
80
+
81
+ .form-group label {
82
+ font-weight: bold;
 
 
83
  }
84
+
85
+ .form-group input,
86
+ .form-group textarea,
87
+ .form-group select {
88
+ padding: 0.75rem;
89
+ border: 1px solid #ddd;
90
+ border-radius: var(--border-radius);
91
+ font-size: 1rem;
92
  }
93
+
94
+ .form-group input[type="file"] {
95
+ padding: 0.5rem;
 
96
  }
97
+
98
  .measurements {
99
+ display: grid;
100
+ grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
101
+ gap: 1rem;
 
 
 
 
102
  }
103
+
104
+ .measurement-group {
105
  display: flex;
106
+ flex-direction: column;
107
+ gap: 0.5rem;
 
 
 
 
 
 
108
  }
109
+
110
+ .btn {
111
+ background-color: var(--primary-color);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  color: white;
113
  border: none;
114
+ padding: 0.75rem 1.5rem;
115
+ border-radius: var(--border-radius);
 
 
116
  cursor: pointer;
117
+ font-size: 1rem;
118
+ transition: background-color 0.3s;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
  }
120
+
121
+ .btn:hover {
122
+ background-color: #ff5252;
123
  }
124
+
125
+ .ratings-section {
126
+ background-color: white;
127
+ border-radius: var(--border-radius);
128
+ box-shadow: var(--shadow);
129
+ padding: 2rem;
130
  }
131
+
132
+ .ratings-section h2 {
133
+ margin-bottom: 1rem;
134
+ color: var(--primary-color);
135
  }
136
+
137
+ .rating {
138
+ background-color: #f8f9fa;
139
+ border-radius: var(--border-radius);
140
+ padding: 1rem;
141
+ margin-bottom: 1rem;
142
+ border-left: 4px solid var(--secondary-color);
143
  }
144
+
145
  .rating-header {
146
  display: flex;
147
  justify-content: space-between;
148
+ margin-bottom: 0.5rem;
 
 
 
 
 
 
 
149
  }
150
+
151
+ .rating-header .rating-score {
 
 
 
 
 
 
 
152
  font-weight: bold;
153
+ color: var(--primary-color);
154
  font-size: 1.2rem;
155
  }
156
+
157
+ .rating-body {
158
+ line-height: 1.6;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
  }
160
+
161
+ .rating-footer {
162
+ display: flex;
163
+ justify-content: space-between;
164
+ margin-top: 0.5rem;
165
  font-size: 0.8rem;
166
+ color: #666;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  }
168
+
169
  footer {
170
  text-align: center;
171
+ padding: 1rem;
172
+ margin-top: 2rem;
173
+ color: #666;
174
  font-size: 0.9rem;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175
  }
176
+
 
 
 
 
 
 
 
 
 
 
 
177
  @media (max-width: 768px) {
178
+ .container {
179
+ padding: 1rem;
 
 
 
 
 
 
180
  }
181
+
182
+ .measurements {
183
+ grid-template-columns: 1fr;
184
  }
185
  }
186
  </style>
187
  </head>
188
  <body>
189
+ <header>
190
+ <h1>NSFW Rating App</h1>
191
+ <p>Get brutally honest ratings from our panel</p>
192
+ <a href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank">Built with anycoder</a>
193
+ </header>
194
+
195
  <div class="container">
196
+ <section class="upload-section">
197
+ <h2>Upload Your Content</h2>
198
+ <form class="upload-form" id="uploadForm">
199
+ <div class="form-group">
200
+ <label for="contentType">Content Type</label>
201
+ <select id="contentType" name="contentType">
202
+ <option value="image">Image</option>
203
+ <option value="video">Video</option>
204
+ </select>
205
  </div>
206
+
207
+ <div class="form-group">
208
+ <label for="contentFile">Upload File</label>
209
+ <input type="file" id="contentFile" name="contentFile" accept="image/*,video/*" required>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  </div>
211
+
212
+ <div class="form-group">
213
+ <label for="description">Description (Optional)</label>
214
+ <textarea id="description" name="description" rows="3" placeholder="Add any additional details..."></textarea>
215
+ </div>
216
+
217
+ <div class="form-group">
218
+ <label>Measurements (Optional)</label>
219
+ <div class="measurements">
220
+ <div class="measurement-group">
221
+ <label for="length">Length (cm)</label>
222
+ <input type="number" id="length" name="length" placeholder="e.g., 15">
 
 
 
 
 
223
  </div>
224
+ <div class="measurement-group">
225
+ <label for="girth">Girth (cm)</label>
226
+ <input type="number" id="girth" name="girth" placeholder="e.g., 12">
227
  </div>
228
  </div>
229
  </div>
230
+
231
+ <button type="submit" class="btn">Submit for Rating</button>
232
+ </form>
233
+ </section>
234
+
235
+ <section class="ratings-section">
236
+ <h2>Recent Ratings</h2>
237
+ <div id="ratingsContainer">
238
+ <!-- Ratings will be dynamically inserted here -->
239
+ <div class="rating">
240
+ <div class="rating-header">
241
+ <span class="rating-score">8.5/10</span>
242
+ <span class="rater-info">Rated by: SavageTeenGirl#42</span>
 
 
243
  </div>
244
+ <div class="rating-body">
245
+ <p>Okay, so I'm gonna be real with you. This is actually pretty decent. The length is good, and the girth is on point. I mean, it's not the biggest I've seen, but it's definitely not small either. The shape is nice, and it looks well-maintained. I'd say you're doing something right. Keep it up!</p>
246
+ </div>
247
+ <div class="rating-footer">
248
+ <span>2 hours ago</span>
249
+ <span>Image</span>
250
  </div>
251
  </div>
252
+
253
+ <div class="rating">
 
 
 
 
 
254
  <div class="rating-header">
255
+ <span class="rating-score">6.0/10</span>
256
+ <span class="rater-info">Rated by: SavageTeenGirl#17</span>
 
 
 
 
 
 
257
  </div>
258
+ <div class="rating-body">
259
+ <p>Honestly, it's okay. I've seen better, I've seen worse. The length is average, but the girth could use some work. It's not bad, but it's not great either. You might wanna hit the gym and work on those pelvic muscles. Just saying.</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
260
  </div>
261
+ <div class="rating-footer">
262
+ <span>5 hours ago</span>
263
+ <span>Video</span>
 
 
 
 
 
 
 
 
 
 
 
264
  </div>
265
  </div>
 
 
 
 
266
  </div>
267
+ </section>
 
 
 
 
 
268
  </div>
269
 
270
+ <footer>
271
+ <p>&copy; 2023 NSFW Rating App. All rights reserved.</p>
272
+ </footer>
273
+
274
  <script>
275
+ document.getElementById('uploadForm').addEventListener('submit', function(e) {
276
+ e.preventDefault();
277
+
278
+ // Here you would typically handle the file upload and send it to a server
279
+ // For this example, we'll just simulate a rating response
280
+
281
+ const contentType = document.getElementById('contentType').value;
282
+ const description = document.getElementById('description').value;
283
+ const length = document.getElementById('length').value;
284
+ const girth = document.getElementById('girth').value;
285
+
286
+ // Simulate a rating response
287
+ const ratings = [
288
+ {
289
+ score: (Math.random() * 5 + 5).toFixed(1),
290
+ rater: `SavageTeenGirl#${Math.floor(Math.random() * 100) + 1}`,
291
+ comment: getRandomComment(),
292
+ time: "just now",
293
+ type: contentType
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
294
  }
295
+ ];
296
+
297
+ // Occasionally show all ratings (10% chance)
298
+ if (Math.random() < 0.1) {
299
+ for (let i = 0; i < 9; i++) {
300
+ ratings.push({
301
+ score: (Math.random() * 5 + 5).toFixed(1),
302
+ rater: `SavageTeenGirl#${Math.floor(Math.random() * 100) + 1}`,
303
+ comment: getRandomComment(),
304
+ time: "just now",
305
+ type: contentType
306
+ });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
307
  }
 
 
 
 
 
 
308
  }
309
+
310
+ // Display the ratings
311
+ const ratingsContainer = document.getElementById('ratingsContainer');
312
+ ratings.forEach(rating => {
313
+ const ratingElement = document.createElement('div');
314
+ ratingElement.className = 'rating';
315
+ ratingElement.innerHTML = `
316
+ <div class="rating-header">
317
+ <span class="rating-score">${rating.score}/10</span>
318
+ <span class="rater-info">Rated by: ${rating.rater}</span>
319
+ </div>
320
+ <div class="rating-body">
321
+ <p>${rating.comment}</p>
322
+ </div>
323
+ <div class="rating-footer">
324
+ <span>${rating.time}</span>
325
+ <span>${rating.type}</span>
326
+ </div>
327
+ `;
328
+ ratingsContainer.insertBefore(ratingElement, ratingsContainer.firstChild);
329
+ });
330
+
331
+ // Reset the form
332
+ this.reset();
333
  });
334
+
335
+ function getRandomComment() {
336
+ const comments = [
337
+ "Okay, so I'm gonna be real with you. This is actually pretty decent. The length is good, and the girth is on point. I mean, it's not the biggest I've seen, but it's definitely not small either. The shape is nice, and it looks well-maintained. I'd say you're doing something right. Keep it up!",
338
+ "Honestly, it's okay. I've seen better, I've seen worse. The length is average, but the girth could use some work. It's not bad, but it's not great either. You might wanna hit the gym and work on those pelvic muscles. Just saying.",
339
+ "Wow, just wow. This is impressive. The length is amazing, and the girth is perfect. I mean, this is what we all dream about. You must be doing something right. Keep it up, king!",
340
+ "I'm sorry, but this is just not it. The length is too short, and the girth is lacking. I mean, it's not the worst, but it's definitely not good. You might wanna consider some exercises or something. Just being honest.",
341
+ "This is average at best. The length is okay, but the girth is just not there. It's not bad, but it's not great either. You might wanna work on it a bit more. Just my two cents.",
342
+ "Okay, so this is actually pretty good. The length is nice, and the girth is decent. It's not the best I've seen, but it's definitely above average. Keep it up, you're doing great!",
343
+ "I'm gonna be honest, this is just not good. The length is too short, and the girth is lacking. I mean, it's not the worst, but it's definitely not good. You might wanna consider some exercises or something. Just being honest.",
344
+ "This is amazing! The length is perfect, and the girth is just right. I mean, this is what we all dream about. You must be doing something right. Keep it up, king!",
345
+ "It's okay, I guess. The length is average, and the girth is decent. It's not the best, but it's not the worst either. You might wanna work on it a bit more. Just my opinion.",
346
+ "Wow, just wow. This is impressive. The length is amazing, and the girth is perfect. I mean, this is what we all dream about. You must be doing something right. Keep it up, king!"
347
+ ];
348
+ return comments[Math.floor(Math.random() * comments.length)];
349
+ }
350
  </script>
351
  </body>
352
  </html>