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.

16 lines
258 B

@extends('layouts.master')
@section('content')
@if(session('me'))
<p>{{ session('me') }}</p>
<p><a href="/auth/logout">sign out</a></p>
@else
Log in:
<form action="/auth/start" method="post">
<input type="url" name="me">
</form>
@endif
@endsection