registration.blade.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. @extends('master')
  2. <!doctype html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. <meta name="description" content="">
  8. <meta name="author" content="">
  9. <link rel="icon" href="/docs/4.0/assets/img/favicons/favicon.ico">
  10. <title>Signin Template for Bootstrap</title>
  11. <link rel="canonical" href="https://getbootstrap.com/docs/4.0/examples/sign-in/">
  12. <!-- Bootstrap core CSS -->
  13. <link href="../../dist/css/bootstrap.min.css" rel="stylesheet">
  14. <!-- Custom styles for this template -->
  15. <link href="signin.css" rel="stylesheet">
  16. </head>
  17. <body class="text-center">
  18. <form class="form-signin">
  19. <img class="mb-4" src="https://getbootstrap.com/docs/4.0/assets/brand/bootstrap-solid.svg" alt="" width="72" height="72">
  20. <h1 class="h3 mb-3 font-weight-normal">Please sign in</h1>
  21. <label for="inputEmail" class="sr-only">Email address</label>
  22. <input type="email" id="inputEmail" class="form-control" placeholder="Email address" required autofocus>
  23. <label for="inputPassword" class="sr-only">Password</label>
  24. <input type="password" id="inputPassword" class="form-control" placeholder="Password" required>
  25. <div class="checkbox mb-3">
  26. <label>
  27. <input type="checkbox" value="remember-me"> Remember me
  28. </label>
  29. </div>
  30. <button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
  31. <p class="mt-5 mb-3 text-muted">&copy; 2017-2018</p>
  32. </form>
  33. </body>
  34. </html>