adding a route to signup

This commit is contained in:
Ghostie 2024-08-19 17:00:28 -05:00
parent 17af5bb343
commit e51906fec3
3 changed files with 11 additions and 1 deletions

View File

@ -0,0 +1,6 @@
@extends('layouts.app')
@section('title', 'Sign Up')
@section('content')
@endsection

View File

@ -18,7 +18,7 @@
<nav class="flex gap-2 items-center">
<a class="font-bold uppercase text-gray-600 text-sm" href="#">Login</a>
<a class="font-bold uppercase text-gray-600 text-sm" href="#">SignUp</a>
<a class="font-bold uppercase text-gray-600 text-sm" href="/signup">Sign Up</a>
</nav>
</div>
</header>

View File

@ -5,3 +5,7 @@ use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return view('main');
});
Route::get("/signup", function () {
return view("auth.signup");
});