Advertisement
Painlover

index s8ctf

Sep 25th, 2024
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.76 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <title>Ping Tool</title>
  8.     <script src="https://cdn.jsdelivr.net/npm/flowbite@2.5.1/dist/flowbite.min.js"></script>
  9.     <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
  10. </head>
  11.  
  12. <body class="bg-gray-100">
  13.     <div class="container mx-auto py-10">
  14.         <div class="max-w-lg mx-auto bg-white p-8 rounded-lg shadow-md">
  15.             <h1 class="text-2xl font-bold mb-6 text-center">Ping Tool</h1>
  16.  
  17.             <form action="/" method="POST" class="space-y-4">
  18.                 <div>
  19.                     <label for="ip" class="block text-sm font-medium text-gray-700">Enter the IP address</label>
  20.                     <input type="text" name="ip" id="ip" required
  21.                        class="mt-1 p-2 block w-full border border-gray-300 rounded-md shadow-sm focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm">
  22.                 </div>
  23.  
  24.                 <div>
  25.                     <button type="submit"
  26.                        class="w-full text-white bg-indigo-600 hover:bg-indigo-700 focus:ring-4 focus:outline-none focus:ring-indigo-200 font-medium rounded-lg text-sm px-5 py-2.5 text-center">Ping
  27.                         Me</button>
  28.                 </div>
  29.             </form>
  30.  
  31.             <div id="output" class="mt-8 bg-gray-50 p-4 rounded-md shadow-inner">
  32.                 <!-- Output of ping command will be injected here -->
  33.             </div>
  34.         </div>
  35.     </div>
  36.  
  37.     <!-- Optional Flowbite JavaScript for additional UI components -->
  38.     <script src="https://cdn.jsdelivr.net/npm/flowbite@2.5.1/dist/flowbite.min.js"></script>
  39. </body>
  40.  
  41. </html>
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement