adding a route to signup
This commit is contained in:
parent
17af5bb343
commit
e51906fec3
6
resources/views/auth/signup.blade.php
Normal file
6
resources/views/auth/signup.blade.php
Normal file
@ -0,0 +1,6 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('title', 'Sign Up')
|
||||
|
||||
@section('content')
|
||||
@endsection
|
@ -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>
|
||||
|
@ -5,3 +5,7 @@ use Illuminate\Support\Facades\Route;
|
||||
Route::get('/', function () {
|
||||
return view('main');
|
||||
});
|
||||
|
||||
Route::get("/signup", function () {
|
||||
return view("auth.signup");
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user