11 lines
264 B
HTML
11 lines
264 B
HTML
{% 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 %}
|