You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
258 B

  1. @extends('layouts.master')
  2. @section('content')
  3. @if(session('me'))
  4. <p>{{ session('me') }}</p>
  5. <p><a href="/auth/logout">sign out</a></p>
  6. @else
  7. Log in:
  8. <form action="/auth/start" method="post">
  9. <input type="url" name="me">
  10. </form>
  11. @endif
  12. @endsection