Fix PHP file encoding

This commit is contained in:
2026-07-10 16:49:32 +02:00
parent 1cdef43a87
commit f469086bc0
13 changed files with 12 additions and 15 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
<section class="auth-panel">
<section class="auth-panel">
<h1>Anmelden</h1>
<form method="post" action="index.php?route=login" class="form">
<?= csrf_field() ?>
+1 -1
View File
@@ -1,4 +1,4 @@
<section class="auth-panel">
<section class="auth-panel">
<h1>Registrieren</h1>
<form method="post" action="index.php?route=register" class="form">
<?= csrf_field() ?>
+1 -1
View File
@@ -1,4 +1,4 @@
<section class="dashboard-head">
<section class="dashboard-head">
<div>
<p class="eyebrow">Heute</p>
<h1>Deine Habits</h1>
+1 -1
View File
@@ -1,4 +1,4 @@
<?php $isEdit = !empty($habit['id']); ?>
<?php $isEdit = !empty($habit['id']); ?>
<section class="form-panel">
<h1><?= $isEdit ? 'Habit bearbeiten' : 'Habit erstellen' ?></h1>
+1 -1
View File
@@ -1,4 +1,4 @@
<!doctype html>
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">