14 lines
269 B
HTML
14 lines
269 B
HTML
|
|
{% extends "base.html" %}
|
||
|
|
|
||
|
|
{% block main %}
|
||
|
|
<form method="post" action="">
|
||
|
|
<div>
|
||
|
|
<label for="email">
|
||
|
|
Email Address
|
||
|
|
</label>
|
||
|
|
<input type="text" name="email" inputmode="email">
|
||
|
|
<button type="submit">Invite</button>
|
||
|
|
</div>
|
||
|
|
</form>
|
||
|
|
{% endblock %}
|