Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. <div class="overflow-hidden login_form">
  2. <form class="login-form flex justify-center h-screen w-screen" action="/login" method="post">
  3. <input type="hidden" name="_csrf" value="IAzfuZ40-8-yHbTuUH4Znhu5r2gtOTntJlpA">
  4.  
  5. <div class="w-full rounded-lg max-w-md shadow-sm">
  6. <form class="bg-white shadow-lg px-8 pt-6 pb-8 mb-4">
  7. <div class="mb-4">
  8. <label class="block text-grey-darker text-sm font-bold mb-4" for="email">
  9. E-mail
  10. </label>
  11. <input class="shadow appearance-none border rounded w-full py-2 px-3 text-grey-darker leading-tight" id="username" type="text" placeholder="E-mail" name="email">
  12. </div>
  13. <div class="mb-4">
  14. <label class="block text-grey-darker text-sm font-bold mb-4" for="password">
  15. Password
  16. </label>
  17. <input class="shadow appearance-none border rounded w-full py-2 px-3 text-grey-darker mb-3 leading-tight" id="password" type="password" placeholder="********" name="password">
  18. </div>
  19. <div class="flex items-center justify-between">
  20. <button type="submit" class="bg-green hover:bg-green-dark text-white font-bold py-2 px-4 rounded" type="button">
  21. Se connecter
  22. </button>
  23. <a class="inline-block font-bold text-sm text-blue-darker" href="#">
  24. Mot de passé oublié ?
  25. </a>
  26.  
  27. <div class="field">
  28. <label class="checkbox">
  29. <input type="checkbox" name="is_active">
  30. Se souvenir
  31. </label>
  32. </div>
  33. </div>
  34. </form>
  35. </div>
  36.  
  37.  
  38. {{ csrfField() }}
  39. </form>
  40. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement