1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 01:41:34 +02:00
invoiceninja/resources/views/portal/ninja2020/generic/email_preferences.blade.php

38 lines
1.2 KiB
PHP
Raw Normal View History

2024-01-17 17:41:54 +01:00
@extends('portal.ninja2020.layout.clean') @section('meta_title',
ctrans('texts.preferences')) @section('body')
<div class="flex h-screen">
<div class="m-auto md:w-1/3 lg:w-1/5">
<div class="flex flex-col items-center">
<img
src="{{ $logo }}"
class="border-gray-100 h-18 pb-4"
alt="Invoice Ninja logo"
/>
<h1 class="text-center text-2xl mt-10">
{{ ctrans('texts.email_settings') }}
</h1>
<form class="my-4" method="post">
@csrf @method('put')
<label for="recieve_emails">
<input type="checkbox" name="recieve_emails"
id="recieve_emails"
{{ $recieve_emails ? 'checked' : '' }} />
<span>
{{ ctrans('texts.recieve_emails') }}
</span>
</label>
<div class="block my-4">
<button class="button button-secondary button-block">
{{ ctrans('texts.save') }}
</button>
</div>
</form>
</div>
</div>
</div>
@stop