diff options
| author | Kyle Javier [kj_sh604] | 2026-02-16 03:06:31 -0500 |
|---|---|---|
| committer | GitHub | 2026-02-16 03:06:31 -0500 |
| commit | 56f77847378fc92fa79b5303ca86ff71b5767c42 (patch) | |
| tree | 34017664c04c2fecb137685a0bdc65ba5d9884ef /src/templates | |
| parent | af1eeceecae9667f8ea069f57d2baf508a08e8de (diff) | |
| parent | 1272877be9f9c263273fdd0b2c564ef6bd73afbd (diff) | |
[merge] feat: NimLang Backend Re-write
Diffstat (limited to 'src/templates')
| -rw-r--r-- | src/templates/index.html | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/templates/index.html b/src/templates/index.html index 42f5f5c..e67f582 100644 --- a/src/templates/index.html +++ b/src/templates/index.html @@ -61,16 +61,17 @@ <label for="paper_size">Paper size</label> <select id="paper_size" name="paper_size"> - {% for key, label in paper_sizes.items() %} - <option value="{{ key }}">{{ label }}</option> - {% endfor %} + <option value="a4paper">A4</option> + <option value="letterpaper">US Letter</option> + <option value="legalpaper">US Legal</option> </select> <label for="margin">Margins</label> <select id="margin" name="margin"> - {% for key, label in margins.items() %} - <option value="{{ key }}" {% if key == "1in" %}selected{% endif %}>{{ label }}</option> - {% endfor %} + <option value="0.75in">Narrow (0.75in)</option> + <option value="1in" selected>Normal (1in)</option> + <option value="1.25in">Comfort (1.25in)</option> + <option value="1.5in">Wide (1.5in)</option> </select> <fieldset> @@ -91,6 +92,6 @@ <section id="result" aria-live="polite"></section> </main> - <script src="{{ url_for('static', filename='main.js') }}"></script> + <script src="/static/main.js"></script> </body> </html> |
