18 lines
349 B
HTML
18 lines
349 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{content.get_name()}}{% endblock %}
|
|
|
|
{% block html_head %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{ content.get_name() }}</h1>
|
|
|
|
<form method="post">
|
|
<label for="email">Email: </label>
|
|
<input name="email" id="email" type="email">
|
|
<button type="submit">Send!</button>
|
|
</form>
|
|
|
|
{% endblock %} |