nyxask/app/templates/index.j2

27 lines
727 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>
Hi from {{ instanceName }}'s Nyxask!
</h1>
<label for="name">Name (optional):</label>
<input
type="text"
id="name"
name="name"
size="10" />
<br>
2025-03-09 23:41:26 -05:00
<br>
2025-03-09 12:57:29 -05:00
<label for="question">Question:</label>
<textarea id="question" name="question"></textarea>
</div>
</body>
</html>