-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (55 loc) · 2.36 KB
/
index.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Infos Maker</title>
<link rel="stylesheet" href="style.css" />
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous" />
<!-- Optional theme -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap-theme.min.css"
integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous" />
</head>
<body>
<div class="row">
<div class="col-md-6">
<form method="post" id="form">
<div class="form-group">
<label for="time">Time</label>
<input type="text" class="form-control" name="time" id="time-input" placeholder="Zeit" />
</div>
<div class="form-group">
<label for="action">Action</label>
<input type="text" class="form-control" name="action" id="" placeholder="Aufgabe" />
</div>
<div class="form-group">
<label for="place">Where (other options)</label>
<input type="text" class="form-control" name="place" id="" placeholder="Ort" />
</div>
<div class="col-md-12 alert alert-info" id="msg" role="alert">
Copied to clipboard...
</div>
<button class="btn btn-default" type="submit">Add</button>
</form>
<form method="post" id="parse">
<div class="form-group">
<label for="time">Infos</label>
<textarea name="infos" id="infos" cols="30" rows="10" class="form-control"
placeholder="Alle Infos"></textarea>
</div>
<button class="btn btn-default" type="submit">Parse</button>
</form>
</div>
<div class="col-md-6">
<textarea name="" id="result" cols="30" rows="30" class="form-control"></textarea>
</div>
</div>
<script src="./index.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd"
crossorigin="anonymous"></script>
</body>
</html>