You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.4 KiB
HTML
65 lines
2.4 KiB
HTML
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Osina</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href='{% static "dist/output.css" %}'>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
|
|
</head>
|
|
|
|
<body>
|
|
<form id="hiddenContent" method="POST" action="{% url 'save_status' %}">
|
|
{% csrf_token %}
|
|
<h1 class="text-slate-800 text-2xl font-semibold text-center">Add Status</h1>
|
|
|
|
<div class="w-full flex justify-center items-center">
|
|
<input required name="text" type="text" placeholder="Type your status here..."
|
|
class="w-full p-3 border border-gray-300 rounded-md bg-transparent outline-none mt-4">
|
|
</div>
|
|
|
|
<div class="w-full py-2 flex justify-start gap-3 items-center">
|
|
<input type="checkbox" name="" id="relatedTaskCheckbox">
|
|
<p class="text-slate-700 text-base">Add Status To Task</p>
|
|
</div>
|
|
|
|
<div class="w-full hidden"
|
|
id="relatedTaskContainer">
|
|
<select id=""
|
|
class="w-full h-[50px] py-1 px-3 border border-gray-300 outline-none rounded-md text-gray-500">
|
|
<option value="" selected disabled>Choose Task</option>
|
|
<option>Task 1</option>
|
|
<option>Task 2</option>
|
|
<option>Task 3</option>
|
|
<option>Task 4</option>
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
const relatedTaskCheckbox = document.getElementById("relatedTaskCheckbox");
|
|
const relatedTaskContainer = document.getElementById("relatedTaskContainer");
|
|
|
|
relatedTaskCheckbox.addEventListener("change", function () {
|
|
if (relatedTaskCheckbox.checked) {
|
|
relatedTaskContainer.classList.remove("hidden");
|
|
} else {
|
|
relatedTaskContainer.classList.add("hidden");
|
|
}
|
|
});
|
|
|
|
</script>
|
|
|
|
<div class="w-full flex justify-center items-center mt-4">
|
|
<button type="submit"
|
|
class="w-fit bg-blue-500 border border-blue-500 rounded-md text-white text-xl px-3 py-2 hover:bg-white hover:text-blue-500">Add</button>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
|
|
</html> |