1
0
Fork 0
This repository has been archived on 2025-03-30. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
csb-project-1/notes/templates/index.html

37 lines
920 B
HTML
Raw Normal View History

2024-11-24 16:11:22 +02:00
<!DOCTYPE html>
<html lang="en">
<body>
<form action="/accounts/logout/" method="POST">
{% csrf_token %}
<input type="submit" value="Log out">
</form>
<h1>Hello, {{user.username }}!</h1>
<h2>Notes:</h2>
{% for note in notes %}
<h4>{{note.time}}:</h4>
{{note.body}}
<form action="/remove/{{note.id}}/" method="POST">
{% csrf_token %}
<input type="submit" value="Delete">
</form>
{% endfor %}
<h2>Add note: </h2>
<form action="/add/" method="POST">
{% csrf_token %}
<input type="text" id="body" name="body"><br><br>
<input type="submit" value="Add note">
</form>
<h2>Search notes: </h2>
<form action="/search/" method="GET">
<label for="keyword">Search Text:</label><br>
<input type="text" id="keyword" name="keyword"}><br><br>
<input type="submit" value="Search">
</form>
2024-11-24 16:11:22 +02:00
</body>
</html>