phonograph/interim-server/templates/add_lens.html

12 lines
264 B
HTML
Raw Normal View History

2025-07-08 14:37:03 -07:00
{% extends "base.html" %}
{% block main %}
<form method="post" action="">
<div>
<label for="lens-name-input">Lens name:</label>
<input type="text" name="name" id="lens-name-input">
</div>
<button type="submit">Create</button>
</form>
{% endblock %}