You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
574 B

<!-- templates/index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vad säger de i Riksdagen?</title>
<!-- Include CSS files -->
</head>
<body>
<h1>Vad säger de i Riksdagen?</h1>
<form action="{{ url_for('index') }}" method="post">
<input type="text" name="user_input" placeholder="Sök ett ord, vilket som helst" required>
<button type="submit">Sök</button>
</form>
{% if error %}
<p style="color:red;">{{ error }}</p>
{% endif %}
<!-- Include additional content -->
</body>
</html>