Users can upload photos

This commit is contained in:
Lucas Jensen
2022-05-26 21:22:59 -07:00
parent 70a86fc06f
commit c474aaae3f
9 changed files with 211 additions and 18 deletions

18
templates/email.html Normal file
View File

@@ -0,0 +1,18 @@
{% 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 %}