-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
71 lines (62 loc) · 1.5 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="it">
<head>
<title>Verifica di tpsit</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<style>
table {
border:solid;
width:100%;
}
td, tr {
border:solid;
font:100%;
text-align:center;
height:60px;
}
label {
display:block;
text-align:center;
}
input {
width:100%;
text-align:center;
}
input[type=submit] {
margin-left:0px;
margin-top:5px;
margin-bottom:10px;
}
input[type=text] {
width:100%;
text-align:center;
}
form {
text-align:center;
}
</style>
</head>
<body>
<div class="container-fluid p-5 bg-primary text-white text-center">
<h1>HOME CONTROL</h1>
<p>(C) Nicola Bernardi 2023</p>
</div>
<div class="container mt-5">
<div class="row">
<div class="col-sm-4">
<h3>Verifica TPSIT</h3>
<p>Controlla la tua casa domotica da qui!</p>
</div>
<?php
require("php/termometri.php");
?>
<?php
//require("reg.php")
?>
</div>
</div>
</body>
</html>