coolify/resources/views/components/layout-simple.blade.php

53 lines
1.4 KiB
PHP
Raw Normal View History

2023-05-16 09:05:38 +02:00
<!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>
2023-05-16 09:05:38 +02:00
@endenv
@env('production')
<title>{{ $title ?? 'Coolify' }}</title>
2023-05-16 09:05:38 +02:00
@endenv
<meta name="csrf-token" content="{{ csrf_token() }}">
@vite(['resources/js/app.js', 'resources/css/app.css'])
<style>
[x-cloak] {
display: none !important;
}
</style>
2023-06-22 14:48:47 +02:00
@livewireStyles
2023-05-16 09:05:38 +02:00
</head>
<body>
@livewireScripts
<main>
{{ $slot }}
</main>
<x-version class="fixed left-2 bottom-1"/>
<script>
function changePasswordFieldType(event) {
let element = event.target
for (let i = 0; i < 10; i++) {
if (element.className === "relative") {
break;
2023-07-13 13:16:24 +02:00
}
element = element.parentElement;
}
element = element.children[1];
if (element.nodeName === 'INPUT') {
if (element.type === 'password') {
element.type = 'text';
} else {
element.type = 'password';
2023-06-16 12:00:36 +02:00
}
2023-06-16 10:32:29 +02:00
}
}
</script>
2023-05-16 09:05:38 +02:00
</body>
</html>