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.
60 lines
2.6 KiB
HTML
60 lines
2.6 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 class="font-poppinsLight">
|
|
<form method="POST" enctype="multipart/form-data" action="{% url 'add_payment_method_modal' %}">
|
|
{% csrf_token %}
|
|
<h1 class="text-secondosiblue text-2xl font-semibold text-center">Add Payment Method</h1>
|
|
|
|
<div class="w-full mt-4">
|
|
<label class="text-gray-500">Payment Method:</label>
|
|
<input name="name" type="text" required
|
|
class="w-full h-[50px] py-1 px-3 border border-gray-300 outline-none rounded-md mt-1">
|
|
</div>
|
|
|
|
<div class="w-full mt-4">
|
|
<label class="text-gray-500">Description:</label>
|
|
<textarea name="description" type="text" placeholder="Description"
|
|
class="w-full p-3 border border-gray-300 rounded-md bg-transparent outline-none mt-1 resize-none"
|
|
rows="4" ></textarea>
|
|
</div>
|
|
|
|
<div class="w-full mt-4">
|
|
<label class="text-gray-500">Image:</label>
|
|
<div class="inbox-box border border-gray-300 w-full rounded-md px-3 mt-1">
|
|
<div class="flex items-center justify-between">
|
|
<input name="image" type="file" class="file-input" accept="image/*" hidden />
|
|
<span class="file-name text-gray-500 text-base focus:outline-none outline-none">Upload
|
|
Logo</span>
|
|
<label
|
|
class="file-label bg-transparent text-gray-500 border border-white h-14 cursor-pointer flex items-center">
|
|
<i class="fa fa-upload" style="font-size: 25px;"></i>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="w-full flex justify-center items-center mt-4">
|
|
<button type="submit"
|
|
class="w-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>
|
|
|
|
<!-------------- JS SCRIPTS --------------->
|
|
<script type="text/javascript" src='{% static "js/inputs/upload-input-tag.js" %}'></script>
|
|
|
|
</body>
|
|
|
|
</html> |