23 lines
865 B
HTML
Executable File
23 lines
865 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Blog</title>
|
|
<style>
|
|
body {background-color: mintcream;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1 style="color: wheat">Just try to think creatively</h1>
|
|
<form action="posts-store.py" method="POST">
|
|
<input type="text" name="title" placeholder="kreativen Titel hier platzieren" style="width: 487px;" required><br><br>
|
|
<textarea name="content"
|
|
placeholder="" style="width: 1500px; height: 330px;" required></textarea><br><br>
|
|
<input type="text" name="tags" placeholder="place tags #here" style="width: 487px;" required><br><br>
|
|
<input type="submit" value="An den BND senden">
|
|
</form>
|
|
</body>
|
|
</html>
|