New changes.
parent
f13c91d51e
commit
6a0344bb6d
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,36 @@
|
||||
{% 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 class="font-poppinsLight">
|
||||
<form method="POST">
|
||||
{% csrf_token %}
|
||||
<h1 class="text-secondosiblue text-2xl font-semibold text-center">Add Member</h1>
|
||||
|
||||
<div class="w-full flex flex-col gap-1">
|
||||
<label class="text-gray-500">Staffs:</label>
|
||||
<select required multiple name="" type="text"
|
||||
class="w-full h-[100px] p-3 border border-gray-300 rounded-md bg-transparent outline-none">
|
||||
<option>Member1</option>
|
||||
<option>Member2</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="w-full flex justify-center items-center mt-6">
|
||||
<button type="submit"
|
||||
class="w-fit h-fit bg-osiblue border border-osiblue rounded-md text-white text-xl px-5 py-1 hover:bg-white hover:text-osiblue duration-300">Save</button>
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,11 @@
|
||||
document.getElementById('rtlButton').addEventListener('click', function() {
|
||||
const editor = document.getElementById('textEditor');
|
||||
editor.classList.remove('ltr');
|
||||
editor.classList.add('rtl');
|
||||
});
|
||||
|
||||
document.getElementById('ltrButton').addEventListener('click', function() {
|
||||
const editor = document.getElementById('textEditor');
|
||||
editor.classList.remove('rtl');
|
||||
editor.classList.add('ltr');
|
||||
});
|
Loading…
Reference in New Issue