-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (29 loc) · 964 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Fax me</title>
<link rel="stylesheet" href="static/pico.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body >
<main class="container-fluid">
<h1>Hey 👋</h1>
<h2>Tipp deine Nachricht nach dem Ton: ....*beeep*</h2>
<small>(Nur 5 Nachrichten alle 5 Minuten erlaubt)</small>
<form action="/fax" method="post">
<fieldset>
<label>
<textarea maxlength="512" required minlength="20" rows="10" name="text" placeholder="Dieser Text wird auf einem Bon bei mir Zuhause gedruckt"></textarea>
</label>
</fieldset>
<fieldset>
<label>
<input maxlength="512" type="text" name="name" placeholder="Dein Name (Optional)">
</label>
</fieldset>
<input type="submit" value="Fax!"/>
</form>
</main>
</body>
</html>