fixed TF in inglese

This commit is contained in:
2025-09-12 15:15:33 +02:00
parent d106d42c03
commit 18364b7127
22 changed files with 1945 additions and 952 deletions
+5 -5
View File
@@ -11,7 +11,7 @@ if (isset($_GET['idtd'])) {
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aggiungi Production Place</title>
<title><?php echo $addprodplace; ?></title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<style>
.container {
@@ -55,7 +55,7 @@ if (isset($_GET['idtd'])) {
<body>
<div class="container mt-3">
<h3>Aggiungi Production Place</h3>
<h3><?php echo $addprodplace; ?></h3>
<form id="productionPlaceForm" method="post" action="save_datalocplace.php">
<div class="form-group row">
<label for="companyname" class="col-sm-2 col-form-label">Company Name</label>
@@ -114,7 +114,7 @@ if (isset($_GET['idtd'])) {
<div class="row">
<div class="col-sm-9 offset-sm-3">
<button type="submit" class="btn btn-primary">Salva</button>
<button type="submit" class="btn btn-primary"><?php echo $savebutton; ?></button>
</div>
</div>
<br>
@@ -123,10 +123,10 @@ if (isset($_GET['idtd'])) {
<hr> <!-- Riga orizzontale -->
<form name="search">
<div class="form-group row">
<label for="companysearch" class="col-sm-2 col-form-label">Ricerca azienda</label>
<label for="companysearch" class="col-sm-2 col-form-label"><?php echo $searchcomp; ?></label>
<div class="col-sm-7">
<input type="text" class="form-control" id="companysearch" name="companysearch" required>
<small class="form-text text-muted" style="font-size: 12px;">Inserisci almeno 3 caratteri del nome della compagnia per iniziare la ricerca.</small>
<small class="form-text text-muted" style="font-size: 12px;"><?php echo $notesearchcomp; ?></small>
</div>
</div>