VibeCoderzVibeCoderz
Telegram
All Prompts
Error Message - Invalid Input preview
carderrormessagealertvalidation

Error Message - Invalid Input

Компонент ошибки: информирует о недопустимом HTML-вводе. Используется для валидации и уведомления пользователя о необходимости предоставить разметку.

Prompt

<div class="bg-red-50 border border-red-200 rounded-lg p-6 max-w-2xl mx-auto">
  <div class="flex items-start space-x-3">
    <svg class="w-6 h-6 text-red-500 flex-shrink-0 mt-0.5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
      <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
    </svg>
    <div class="flex-1">
      <h3 class="text-lg font-semibold text-red-900 mb-1">Invalid Input</h3>
      <p class="text-red-700 text-sm leading-relaxed">The provided input appears to be a URL link, not HTML code. Please paste the actual HTML markup that you want analyzed and converted into reusable UI components.</p>
      <div class="mt-4 p-3 bg-white rounded border border-red-100">
        <p class="text-xs text-gray-600 mb-2 font-medium">Expected format:</p>
        <code class="text-xs text-gray-800 block"><div class="container">...</div></code>
      </div>
    </div>
  </div>
</div>
All Prompts