Skip to content

Instantly share code, notes, and snippets.

@Kd-Here
Created March 5, 2023 12:40
Show Gist options
  • Save Kd-Here/f516bf66ee4de32be5ed61468497807c to your computer and use it in GitHub Desktop.
Save Kd-Here/f516bf66ee4de32be5ed61468497807c to your computer and use it in GitHub Desktop.
{% extends "base.html" %}{% block title %}HOME{% endblock %}
{% block content %}
<h1 align="center">This is the homepage</h1>
<h1 align="center" class="bg-danger">Notes</h1>
<ul class="list-group list-group-flush" id="notes">
{% for note in user.notes %}
<li class="list-group-item">
{{note.data}}
</li>
{% endfor %}
</ul>
<form action="" method="POST">
<textarea name="note" class='form-control' id="note" cols="30" rows="10"></textarea>
<div align="center">
<br>
<button type="submit" class="btn btn-primary">Add Notes</button>
</div>
</form>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment