-
Notifications
You must be signed in to change notification settings - Fork 0
/
newlist.html
33 lines (33 loc) · 876 Bytes
/
newlist.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
<!DOCTYPE html>
<html>
<head>
<title>Smart Fridge</title>
<link rel="stylesheet" href="style/mainstyle.css" />
<link rel="stylesheet" href="style/newliststyle.css" />
<meta charset="UTF-8">
</head>
<body>
<div id="headerBar">
<span id="header">Neue Liste</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 id="contentBox">
<input type="text" id="nameText" value="Name der Liste" />
<textarea id="itemList">Anzahl,Name;Anzahl,Name...</textarea>
<button id="createButton">Liste erstellen</button>
</div>
<div id="footerBar">
<a href="shoppinglist.html">
<span id="back">Zurück</span>
</a>
</div>
</body>
</html>