Skip to content

Commit b4723ee

Browse files
committed
Updating User Accounts with Forms
1 parent d125943 commit b4723ee

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

src/personal/templates/personal/home.html

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,13 @@
33

44
{% block content %}
55

6-
<div style="border: 2px solid #000;">
7-
<h1>This is the body</h1>
8-
<p>Here is where you put stuff that should be in the body of your websites.</p>
6+
7+
<h1>Registered users:</h1>
8+
{% for user in accounts %}
9+
{{user}}<br>
10+
{% endfor %}
911

1012

11-
{% for user in accounts %}
12-
{{user}}<br>
13-
{% endfor %}
1413

15-
16-
</div>
1714

1815
{% endblock content %}

0 commit comments

Comments
 (0)