nyxask/app/templates/index.j2

24 lines
749 B
Text
Raw Normal View History

2025-03-09 12:57:29 -05:00
{% from 'header.j2' import header_home %}
{% from 'imports.j2' import imports_main %}
2025-03-09 15:28:35 -05:00
<html lang=en>
2025-03-09 12:57:29 -05:00
<head>
<title>{{ instanceBranding }} - Home</title>
{{ imports_main() }}
2025-03-09 12:57:29 -05:00
</head>
<body>
{{ header_home() }}
<div style="text-align:center">
<h1>
2025-03-11 10:15:17 -05:00
Hi from {{ instanceLocation }}'s Nyxask!
2025-03-09 12:57:29 -05:00
</h1>
2025-03-15 00:54:37 -05:00
<form method="POST">
<input type="text" name="name" size="10" placeholder="name (optional)" />
<br>
<br>
<textarea id="question" name="question" placeholder="question" required></textarea>
2025-03-15 00:55:25 -05:00
<button type="submit">send</button>
2025-03-15 00:54:37 -05:00
</form>
2025-03-09 12:57:29 -05:00
</div>
</body>
</html>