Users can upload photos
This commit is contained in:
18
templates/email.html
Normal file
18
templates/email.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user