-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (76 loc) · 2.98 KB
/
index.html
File metadata and controls
95 lines (76 loc) · 2.98 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!doctype html>
<html class="no-js" lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Swatch</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
<meta name="description" content="">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<meta property="og:image:alt" content="">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<!-- <link rel="icon" href="/favicon.ico" sizes="any"> -->
<link rel="icon" href="/icon.svg" type="image/svg+xml">
<!-- <link rel="apple-touch-icon" href="icon.png"> -->
<link rel="manifest" href="site.webmanifest">
<meta name="theme-color" content="#fafafa">
<script src="main.js?_t=1729174756"></script>
</head>
<body>
<h1 id="title">Swatch</h1>
<section id="menu" class="page">
<div id="specificOptions">
<button name="export" disabled>Exportieren</button>
<button name="delete">Löschen</button>
</div>
<div id="genericOptions">
<button name="new">Neue Swatch anlegen</button>
<button name="open">Swatch öffnen</button>
</div>
</section>
<section id="banner" class="page open">
<svg id="bannerWatch" width="200" height="200" viewBox="-100 -100 200 200">
<circle class="minute_marker" r="90" pathLength="60" />
<circle class="hour_marker" r="90" pathLength="60" />
<g id="second_hand"><line class="hand hand--second" x1="0" y1="12" x2="0" y2="-80" /></g>
<circle class="center" r="3" />
</svg>
</section>
<section id="newSwatch" class="page">
<p>Lege jetzt eine Swatch an um loszulegen.</p>
<form>
<input type="text" name="swatch.name" placeholder="Name der neuen Swatch" />
<fieldset>
<legend>Tätigkeiten</legend>
<input type="text" name="swatch.tasks[].name" placeholder="Neue Tätigkeiten" />
<input disabled type="button" name="Task.add()" value="Hinzufügen" />
</fieldset>
<fieldset>
<legend>Benutzer</legend>
<input type="text" name="swatch.users[].name" placeholder="Neuer Benutzer" />
<input disabled type="button" name="User.add()" value="Hinzufügen" />
</fieldset>
<input disabled type="submit" name="Swatch.save()" value="Anlegen" />
</form>
</section>
<section id="swatchList" class="page">
<ul id="swatches"></ul>
</section>
<section id="swatch" class="page">
<ul id="swatchActiveUsers"></ul>
<ul id="swatchUsers"></ul>
</section>
<section id="delete" class="page">
<button name="back">Zurück</button>
<button name="ok">Löschen</button>
</section>
<section id="finalize" class="page">
<button name="back">Zurück</button>
</section>
</body>
</html>