13 lines
284 B
PHP
13 lines
284 B
PHP
@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 |