Files
lab7/articles/templates/new_article.html
2025-10-08 21:30:45 +03:00

27 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Новая статья</title>
{% load static %}
<link rel="stylesheet" href="{% static 'index.css' %}">
<link rel="shortcut icon" type="image/png" href="{% static 'favicon.ico' %}"/>
</head>
<body>
<div class="header">
<img src="{% static 'logo.svg' %}" />
<h1>Всё про IT</h1>
</div>
<div class="content">
<h1>Написать статью</h1>
<form method="POST">{% csrf_token %}
<input class="title" type="text" name="title" placeholder="Название статьи" value="{{ form.title }}">
<textarea class="text" name="text" placeholder="Текст статьи">{{ form.text }}</textarea>
<input class="submit" type="submit" value="Сохранить">
</form>
{{ form.errors }}
</div>
<p><a href="/">← Назад к списку статей</a></p>
</body>
</html>