14 lines
277 B
HTML
14 lines
277 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Hotel_image</title>
|
|
</head>
|
|
<body>
|
|
<form method = "post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit">Upload</button>
|
|
</form>
|
|
</body>
|
|
</html>
|