You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
655 B
26 lines
655 B
{% load crispy_forms_tags %}
|
|
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>FormApp</title>
|
|
</head>
|
|
<link rel="stylesheet" type="text/css" href="{% static "inzeraty_form/css/index.css" %}">
|
|
<body>
|
|
<div class="top">
|
|
<a href="/">Hlavní stránka</a>
|
|
<a href="/formular/"><font color = darkblue>Formulář</font></a>
|
|
<a href="/feedback/">List inzerátů</a>
|
|
</div>
|
|
<b><u><p style="text-align: right;">Vladimír Dykast</p></u></b>
|
|
<h1>Formulář</h1>
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{{form | crispy}}
|
|
<input type="submit">
|
|
</form>
|
|
<br>
|
|
|
|
</body>
|
|
</html>
|