initial commit
This commit is contained in:
commit
0c42bef077
109 changed files with 16545 additions and 0 deletions
27
resources/views/pages/auth/login.blade.php
Normal file
27
resources/views/pages/auth/login.blade.php
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<x-layouts.auth>
|
||||
<div class="text-2xl">
|
||||
<h1 class="text-center m-5">Log in</h1>
|
||||
|
||||
<form class="flex flex-col gap-5" method="POST" action="{{route("login")}}">
|
||||
@csrf
|
||||
@if($errors->any())
|
||||
<div class="text-red-500">
|
||||
@foreach($errors->all() as $error)
|
||||
<p>{{$error}}</p>
|
||||
@endforeach
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div class="flex flex-col">
|
||||
<label class="py-5" for="email">Email</label>
|
||||
<input class="bg-white" type="email" name="email" value="{{old("email")}}"/>
|
||||
</div>
|
||||
<div class="flex flex-col">
|
||||
<label class="py-5" for="password">Password</label>
|
||||
<input class="bg-white" type="password" name="password"/>
|
||||
</div>
|
||||
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
</div>
|
||||
</x-layouts.auth>
|
||||
26
resources/views/pages/auth/register.blade.php
Normal file
26
resources/views/pages/auth/register.blade.php
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<x-layouts.auth>
|
||||
<div class="text-2xl">
|
||||
<h1 class="text-center m-5">Create Account</h1>
|
||||
|
||||
<form class="flex flex-col gap-5" wire:submit.prevent="register">
|
||||
@csrf
|
||||
@if($errors->any())
|
||||
<div class="text-red-500">
|
||||
@foreach($errors->all() as $error)
|
||||
<p>{{$error}}</p>
|
||||
@endforeach
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div class="flex flex-col">
|
||||
<label class="py-5" for="username">Username</label>
|
||||
<input class="bg-white" type="text" name="username" wire:model="form.username"/>
|
||||
</div>
|
||||
<div class="flex flex-col">
|
||||
<label class="py-5" for="email">Email</label>
|
||||
<input class="bg-white" type="email" name="email" wire:model="form.email"/>
|
||||
</div>
|
||||
<button type="submit" class="bg-green-400 text-white px-4 py-2 rounded">Submit</button>
|
||||
</form>
|
||||
</div>
|
||||
</x-layouts.auth>
|
||||
43
resources/views/pages/auth/reset-password.blade.php
Normal file
43
resources/views/pages/auth/reset-password.blade.php
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
<div class="text-2xl">
|
||||
<h1 class="text-center m-5">Reset Password</h1>
|
||||
|
||||
<form class="flex flex-col gap-5" wire:submit.prevent="resetPassword">
|
||||
@csrf
|
||||
@if($errors->any())
|
||||
<div class="text-red-500">
|
||||
@foreach($errors->all() as $error)
|
||||
<p>{{$error}}</p>
|
||||
@endforeach
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div class="flex flex-col">
|
||||
<label class="py-5" for="email">Email</label>
|
||||
<input
|
||||
class="bg-white"
|
||||
type="email"
|
||||
name="email"
|
||||
wire:model="form.email"
|
||||
/>
|
||||
</div>
|
||||
<div class="flex flex-col">
|
||||
<label class="py-5" for="password">Password</label>
|
||||
<input
|
||||
class="bg-white"
|
||||
type="password"
|
||||
name="password"
|
||||
wire:model="form.password"
|
||||
/>
|
||||
</div>
|
||||
<div class="flex flex-col">
|
||||
<label class="py-5" for="password_confirmation">Confirm Password</label>
|
||||
<input
|
||||
class="bg-white"
|
||||
type="password"
|
||||
name="password_confirmation"
|
||||
wire:model="form.password_confirmation"
|
||||
/>
|
||||
</div>
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
</div>
|
||||
5
resources/views/pages/home.blade.php
Normal file
5
resources/views/pages/home.blade.php
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<x-layouts.app>
|
||||
<div class="text-white text-2xl m-5">
|
||||
<h1>Home</h1>
|
||||
</div>
|
||||
</x-layouts.app>
|
||||
6
resources/views/pages/lists.blade.php
Normal file
6
resources/views/pages/lists.blade.php
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<x-layouts.app>
|
||||
<h1>Lists</h1>
|
||||
<div class="text-white text-2xl">
|
||||
<livewire:movie-lists/>
|
||||
</div>
|
||||
</x-layouts.app>
|
||||
5
resources/views/pages/schedule.blade.php
Normal file
5
resources/views/pages/schedule.blade.php
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<div class="text-white text-2xl">
|
||||
<h1>{{$count}}</h1>
|
||||
<button wire:click="increment">+</button>
|
||||
<button wire:click="decrement">-</button>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue