login.blade.php 2.1 KB

12345678910111213141516171819202122232425
  1. <div>
  2. {{-- To attain knowledge, add things every day; To attain wisdom, subtract things every day. --}}
  3. <div class="flex items-center justify-center min-h-screen bg-gray-100">
  4. <div class="w-full max-w-md">
  5. <form class="this illustration features a person working on their laptop with various charts, graphs, and other data displayed on the screen. the person appears to be analyzing and strategizing their business strategies, as seen by the various icons and symbols on the screen. the overall color scheme is blue and green, giving the image a fresh and modern look. the text on the screen reads "business analysis" and "data analysis", indicating that this is an educational or informational website. the image also includes a button that says "learn more" and a call to action to register for the presentation.bg-white shadow-md rounded px-8 py-6">
  6. <div class="mb-4">
  7. <label class="block text-gray-700 text-sm font-bold mb-2" for="username">Username</label>
  8. <input class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline" id="username" type="text" placeholder="Enter your username">
  9. </div>
  10. <div class="mb-6">
  11. <label class="block text-gray-700 text-sm font-bold mb-2" for="password">Password</label>
  12. <input class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline" id="password" type="password" placeholder="Enter your password">
  13. </div>
  14. <div class="flex items-center justify-between">
  15. <button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline" type="button">
  16. Sign In
  17. </button>
  18. <a class="inline-block align-baseline font-bold text-sm text-blue-500 hover:text-blue-800" href="#">
  19. Forgot Password?
  20. </a>
  21. </div>
  22. </form>
  23. </div>
  24. </div>
  25. </div>