Put welcome message on homepage

This commit is contained in:
Ben Ramey
2017-11-04 19:26:08 -06:00
parent 7a962120c2
commit a17d950c1b
3 changed files with 16 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
@extends('layouts.app')
@section('content')
<div class="jumbotron">
<h1>Welcome to Emmaus Grader!</h1>
<p>
Please log in to begin using the application.
</p>
<p><a class="btn btn-primary btn-lg" href="{{ route('login') }}" role="button">Login</a></p>
</div>
@endsection