Skip to content

Commit

Permalink
init lang + login/register page
Browse files Browse the repository at this point in the history
  • Loading branch information
andrasbacsai committed May 16, 2023
1 parent e635dc4 commit 7fd224b
Show file tree
Hide file tree
Showing 5 changed files with 105 additions and 50 deletions.
15 changes: 15 additions & 0 deletions lang/en.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"auth.login": "Login",
"auth.logout": "Logout",
"auth.register": "Register",
"auth.registration_disabled": "Registration is disabled.",
"auth.reset_password": "Reset Password",
"auth.failed": "These credentials do not match our records.",
"auth.failed.password": "The provided password is incorrect.",
"auth.failed.email": "We can't find a user with that e-mail address.",
"auth.throttle": "Too many login attempts. Please try again in :seconds seconds.",
"input.name": "Name",
"input.email": "Email",
"input.password": "Password",
"input.password.again": "Password Again"
}
53 changes: 28 additions & 25 deletions resources/views/auth/login.blade.php
Original file line number Diff line number Diff line change
@@ -1,27 +1,30 @@
<x-layout>
<div>v{{ config('version') }}</div>
<a href="/login">Login</a>
@if ($is_registration_enabled)
<a href="/register">Register</a>
@else
<span>Registration disabled</span>
@endif
<div>
<form action="/login" method="POST">
@csrf
<input type="text" name="email" placeholder="email" @env('local') value="[email protected]" @endenv
autofocus />
<input type="password" name="password" placeho lder="Password" @env('local') value="password" @endenv />
<x-inputs.button type="submit">Login</x-inputs.button>
</form>
@if ($errors->any())
<div class="alert alert-danger">
<ul>
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
<x-layout-simple>
<div class="flex items-center justify-center h-screen">
<div>
<div>
<form action="/login" method="POST" class="flex flex-col gap-2">
@csrf
<input type="email" name="email" placeholder="{{ __('input.email') }}"
@env('local') value="[email protected]" @endenv autofocus />
<input type="password" name="password" placeholder="{{ __('input.password') }}"
@env('local') value="password" @endenv />
<x-inputs.button isBold type="submit">{{ __('auth.login') }}</x-inputs.button>
</form>
@if ($errors->any())
<div class="alert alert-danger">
<ul>
<li>{{ __('auth.failed') }}</li>
</ul>
</div>
@endif
</div>
@endif
@if ($is_registration_enabled)
<a href="/register" class="flex justify-center pt-2">
<button>{{ __('auth.register') }}</button>
</a>
@else
<div>{{ __('auth.registration_disabled') }}</div>
@endif
</div>
</div>
</x-layout>
</x-layout-simple>
49 changes: 27 additions & 22 deletions resources/views/auth/register.blade.php
Original file line number Diff line number Diff line change
@@ -1,23 +1,28 @@
<x-layout>
<div>v{{ config('version') }}</div>
<a href="/login">Login</a>
<a href="/register">Register</a>
<form action="/register" method="POST">
@csrf
<input type="text" name="name" placeholder="name" @env('local') value="Root" @endenv />
<input type="text" name="email" placeholder="email" @env('local') value="[email protected]" @endenv />
<input type="password" name="password" placeholder="Password" @env('local') value="password" @endenv />
<input type="password" name="password_confirmation" placeholder="Password"
@env('local') value="password" @endenv />
<x-inputs.button type="submit">Register</x-inputs.button>
</form>
@if ($errors->any())
<div class="alert alert-danger">
<ul>
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
<x-layout-simple>
<div class="flex items-center justify-center h-screen">
<div>
<form action="/register" method="POST" class="flex flex-col gap-2">
@csrf
<input type="text" name="name" placeholder="{{ __('input.name') }}"
@env('local') value="root" @endenv />
<input type="email" name="email" placeholder="{{ __('input.email') }}"
@env('local') value="[email protected]" @endenv />
<input type="password" name="password" placeholder="{{ __('input.password') }}"
@env('local') value="password" @endenv />
<input type="password" name="password_confirmation" placeholder="{{ __('input.password.again') }}"
@env('local') value="password" @endenv />
<x-inputs.button isBold type="submit">{{ __('auth.register') }}</x-inputs.button>
</form>
@if ($errors->any())
<div class="alert alert-danger">
<ul>
<li>{{ __('auth.failed') }}</li>
</ul>
</div>
@endif
<a href="/login" class="flex justify-center pt-2">
<button>{{ __('auth.login') }}</button>
</a>
</div>
@endif
</x-layout>
</div>
</x-layout-simple>
32 changes: 32 additions & 0 deletions resources/views/components/layout-simple.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://api.fonts.coollabs.io" crossorigin>
<link href="https://api.fonts.coollabs.io/css2?family=Inter&display=swap" rel="stylesheet">
@env('local')
<title>Coolify - localhost</title>
@endenv
@env('production')
<title>{{ $title ?? 'Coolify' }}</title>
@endenv
<meta name="csrf-token" content="{{ csrf_token() }}">
@vite(['resources/js/app.js', 'resources/css/app.css'])
<style>
[x-cloak] {
display: none !important;
}
</style>
</head>

<body>
<main>
{{ $slot }}
</main>
<a
class="fixed text-xs cursor-pointer left-2 bottom-1 opacity-20 hover:opacity-100 hover:text-white">v{{ config('version') }}</a>
</body>

</html>
6 changes: 3 additions & 3 deletions resources/views/components/layout.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
</head>

<body>
<a
class="fixed text-xs cursor-pointer left-2 bottom-1 opacity-20 hover:opacity-100 hover:text-white">v{{ config('version') }}</a>

@livewireScripts

@auth
Expand All @@ -33,7 +32,8 @@ class="fixed text-xs cursor-pointer left-2 bottom-1 opacity-20 hover:opacity-100
<main class="max-w-6xl pt-10 mx-auto">
{{ $slot }}
</main>

<a
class="fixed text-xs cursor-pointer left-2 bottom-1 opacity-20 hover:opacity-100 hover:text-white">v{{ config('version') }}</a>
@auth
<script>
window.addEventListener("keydown", function(event) {
Expand Down

0 comments on commit 7fd224b

Please sign in to comment.