-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtempsettings.html
44 lines (44 loc) · 1.45 KB
/
tempsettings.html
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
<!DOCTYPE html>
<html>
<head>
<title>Smart Fridge</title>
<link rel="stylesheet" href="style/mainstyle.css" />
<link rel="stylesheet" href="style/settingsstyle.css" />
<meta charset="UTF-8">
</head>
<body>
<div id="headerBar">
<span id="header" style="font-size:46px">Temperatureinstellungen</span>
<a href="messages.html">
<img src="pics/brief.svg" id="messagesIcon"/>
</a>
<a href="index.html">
<img src="pics/home.svg" id="homeIcon"/>
</a>
<a href="settings.html">
<img src="pics/zahnrad.svg" id="settingsIcon"/>
</a>
</div>
<div class="setting" style="top:10%">
<span class="settingText" style="top:30%">Oberes Fach</span>
<span class="inputBox"><input type="text" class="textInput" value="6,0"/></span>
</div>
<div class="setting" style="top:20%">
<span class="settingText" style="top:30%">Mittleres Fach</span>
<span class="inputBox"><input type="text" class="textInput" value="6,0"/></span>
</div>
<div class="setting" style="top:30%">
<span class="settingText" style="top:30%">Unteres Fach</span>
<span class="inputBox"><input type="text" class="textInput" value="6,0"/></span>
</div>
<div class="setting" style="top:40%">
<span class="settingText" style="top:30%">Schubladen</span>
<span class="inputBox"><input type="text" class="textInput" value="8,0"/></span>
</div>
<div id="footerBar">
<a href="settings.html">
<span id="back">Zurück</span>
</a>
</div>
</body>
</html>