50 lines
No EOL
1 KiB
HTML
50 lines
No EOL
1 KiB
HTML
<html>
|
|
<head>
|
|
<title> Signal Bridge </title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<style>
|
|
label, p {
|
|
font-family: monospace;
|
|
letter-spacing: .17em;
|
|
overflow:hidden;
|
|
}
|
|
.center{
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.input{
|
|
border-radius: 25px;
|
|
border: 2px solid gray;
|
|
padding: 10px;
|
|
margin: 10px
|
|
}
|
|
#button:hover {background-color: #888B8D}
|
|
#button:active {
|
|
background-color: #666;
|
|
box-shadow: 0 5px #666;
|
|
transform: translateY(4px);
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
<div class="center">
|
|
<div class="typewriter">
|
|
<h1> Pošli svou zprávu</h1></div>
|
|
</div>
|
|
|
|
<div class="center">
|
|
<form action="/sender" method="post" enctype="multipart/form-data":>
|
|
<label for="Message">Zpráva: </label><br>
|
|
<textarea rows="5" cols="60" name="message" id="message"placeholder="Zadejte Zprávu" class="input"></textarea> <br><br>
|
|
<input type="submit" class="input" id="button" value="Odeslat">
|
|
</form>
|
|
{% if text %}
|
|
<p>{{text|safe}}</p>
|
|
{% endif %}
|
|
</div>
|
|
|
|
|
|
<h3> </h3>
|
|
</body>
|
|
</html> |