2024-10-09 22:44:40 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block header %}
|
2024-10-14 11:02:11 +00:00
|
|
|
<h1>{% block title %}{{ localize("options") }}{% endblock %}</h1>
|
2024-10-09 22:44:40 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2024-10-14 16:31:07 +00:00
|
|
|
<form method="post">
|
|
|
|
<label for="language-select">{{ localize("language") }}</label>
|
|
|
|
<select name="language" id="language-select">
|
|
|
|
<option value="ja">日本語</option>
|
|
|
|
<option value="en">English</option>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<label for="theme-select">{{ localize("theme") }}</label>
|
|
|
|
<select name="theme" id="theme-select">
|
|
|
|
<option value="dark">{{ localize("dark_theme") }}</option>
|
|
|
|
<option value="light">{{ localize("light_theme") }}</option>
|
|
|
|
</select>
|
|
|
|
<hr>
|
|
|
|
<button type="submit">Okay</button>
|
|
|
|
</form>
|
2024-10-09 22:44:40 +00:00
|
|
|
{% endblock %}
|