mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
aad9f81e93
* Dependency clearing * Tailwind & templates cleanup * Password reset pages & more features: - New $this->render() method - Password reset pages - Tailwind CSS scaffold - New styles for buttons, inputs, alerts - Changed to shorthand syntax for language file (en) - Added app.css and app.js which will be main endpoint - Added new 'theme' field inside of ninja.php - Scaffold for 'ninja2020' theme: both client and global theme - Ignoring local builds of assets, until purgeCSS is there - Overall cleanup * Switch back default template to 'default' * Remove app.css build * Fix Codacy * Fix Codacy 'doublequote' issues
59 lines
2.7 KiB
PHP
59 lines
2.7 KiB
PHP
@extends('portal.ninja2020.layout.clean')
|
|
@section('meta_title', ctrans('texts.password_reset'))
|
|
|
|
@section('body')
|
|
<div class="flex h-screen">
|
|
<div class="m-auto md:w-1/3 lg:w-1/5">
|
|
<div class="flex flex-col">
|
|
<h1 class="text-center text-3xl">{{ ctrans('texts.password_reset') }}</h1>
|
|
@if(session('status'))
|
|
<div class="alert alert-success mt-2">
|
|
{{ session('status') }}
|
|
</div>
|
|
@endif
|
|
<form action="{{ route('password.update') }}" method="post" class="mt-6">
|
|
@csrf
|
|
<input type="hidden" name="token" value="{{ $token }}">
|
|
<div class="flex flex-col">
|
|
<label for="email" class="input-label">{{ ctrans('texts.email_address') }}</label>
|
|
<input type="email" name="email" id="email"
|
|
class="input"
|
|
value="{{ $email ?? old('email') }}"
|
|
autofocus>
|
|
@error('email')
|
|
<div class="validation validation-fail">
|
|
{{ $message }}
|
|
</div>
|
|
@enderror
|
|
</div>
|
|
<div class="flex flex-col mt-4">
|
|
<label for="password" class="input-label">{{ ctrans('texts.password') }}</label>
|
|
<input type="password" name="password" id="password"
|
|
class="input"
|
|
autofocus>
|
|
@error('password')
|
|
<div class="validation validation-fail">
|
|
{{ $message }}
|
|
</div>
|
|
@enderror
|
|
</div>
|
|
<div class="flex flex-col mt-4">
|
|
<label for="password" class="input-label">{{ ctrans('texts.password') }}</label>
|
|
<input type="password" name="password_confirmation" id="password_confirmation"
|
|
class="input"
|
|
autofocus>
|
|
@error('password_confirmation')
|
|
<div class="validation validation-fail">
|
|
{{ $message }}
|
|
</div>
|
|
@enderror
|
|
</div>
|
|
<div class="mt-5">
|
|
<button class="button button-primary button-block">{{ ctrans('texts.complete') }}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|