Update index.html
Browse files- index.html +27 -14
index.html
CHANGED
|
@@ -4,12 +4,20 @@
|
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
<title>International Umbrella Endowment</title>
|
|
|
|
|
|
|
|
|
|
| 7 |
<link rel="stylesheet" href="style.css">
|
| 8 |
<script src="script.js" defer></script>
|
| 9 |
</head>
|
| 10 |
<body>
|
| 11 |
|
| 12 |
-
<div class="
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
<div class="form-container" id="lookup-container">
|
| 14 |
<h2>Check Deal Status</h2>
|
| 15 |
<form id="deal-lookup-form">
|
|
@@ -24,22 +32,26 @@
|
|
| 24 |
<div class="form-container admin-panel">
|
| 25 |
<details>
|
| 26 |
<summary>Platform Operator Panel</summary>
|
| 27 |
-
<
|
| 28 |
-
<
|
| 29 |
-
<
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
<
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
|
|
|
|
|
|
| 38 |
</details>
|
| 39 |
</div>
|
| 40 |
</div>
|
| 41 |
|
| 42 |
-
<button id="show-submission-button" class="floating-action-button" title="Submit New Deal"
|
|
|
|
|
|
|
| 43 |
|
| 44 |
<div id="submission-modal" class="modal-backdrop hidden">
|
| 45 |
<div class="modal-content">
|
|
@@ -51,10 +63,11 @@
|
|
| 51 |
<label for="ownerName">Owner Name</label>
|
| 52 |
<input type="text" id="ownerName" name="ownerName" placeholder="Enter legal owner name" required>
|
| 53 |
</div>
|
| 54 |
-
|
| 55 |
<label for="contactEmail">Contact Email</label>
|
| 56 |
<input type="email" id="contactEmail" name="contactEmail" placeholder="Enter a valid email address" required>
|
| 57 |
</div>
|
|
|
|
| 58 |
<div class="form-group">
|
| 59 |
<label for="tokenAmount">UMBR Tokens Requested</label>
|
| 60 |
<input type="number" id="tokenAmount" name="tokenAmount" placeholder="e.g., 5000.50" required min="0" step="any">
|
|
|
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
<title>International Umbrella Endowment</title>
|
| 7 |
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
| 8 |
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
| 9 |
+
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
|
| 10 |
<link rel="stylesheet" href="style.css">
|
| 11 |
<script src="script.js" defer></script>
|
| 12 |
</head>
|
| 13 |
<body>
|
| 14 |
|
| 15 |
+
<div class="content-wrapper">
|
| 16 |
+
<header class="page-header">
|
| 17 |
+
<img src="http://googleusercontent.com/image_generation_content/0" alt="Geometric Blue Umbrella Logo" class="logo">
|
| 18 |
+
<h1>International Umbrella Endowment</h1>
|
| 19 |
+
</header>
|
| 20 |
+
|
| 21 |
<div class="form-container" id="lookup-container">
|
| 22 |
<h2>Check Deal Status</h2>
|
| 23 |
<form id="deal-lookup-form">
|
|
|
|
| 32 |
<div class="form-container admin-panel">
|
| 33 |
<details>
|
| 34 |
<summary>Platform Operator Panel</summary>
|
| 35 |
+
<div class="details-content">
|
| 36 |
+
<form id="admin-action-form">
|
| 37 |
+
<div class="form-group">
|
| 38 |
+
<label for="admin-deal-id">Deal ID to Action</label>
|
| 39 |
+
<input type="text" id="admin-deal-id" name="deal_id" placeholder="Enter Deal ID to approve/decline" required>
|
| 40 |
+
</div>
|
| 41 |
+
<div class="admin-buttons">
|
| 42 |
+
<button type="button" id="admin-approve-button" class="approve">Approve</button>
|
| 43 |
+
<button type="button" id="admin-decline-button" class="decline">Decline</button>
|
| 44 |
+
</div>
|
| 45 |
+
<div id="admin-status-message" class="status" aria-live="polite"></div>
|
| 46 |
+
</form>
|
| 47 |
+
</div>
|
| 48 |
</details>
|
| 49 |
</div>
|
| 50 |
</div>
|
| 51 |
|
| 52 |
+
<button id="show-submission-button" class="floating-action-button" title="Submit New Deal">
|
| 53 |
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" width="28" height="28"><path d="M11 11V5H13V11H19V13H13V19H11V13H5V11H11Z"></path></svg>
|
| 54 |
+
</button>
|
| 55 |
|
| 56 |
<div id="submission-modal" class="modal-backdrop hidden">
|
| 57 |
<div class="modal-content">
|
|
|
|
| 63 |
<label for="ownerName">Owner Name</label>
|
| 64 |
<input type="text" id="ownerName" name="ownerName" placeholder="Enter legal owner name" required>
|
| 65 |
</div>
|
| 66 |
+
<div class="form-group">
|
| 67 |
<label for="contactEmail">Contact Email</label>
|
| 68 |
<input type="email" id="contactEmail" name="contactEmail" placeholder="Enter a valid email address" required>
|
| 69 |
</div>
|
| 70 |
+
<hr>
|
| 71 |
<div class="form-group">
|
| 72 |
<label for="tokenAmount">UMBR Tokens Requested</label>
|
| 73 |
<input type="number" id="tokenAmount" name="tokenAmount" placeholder="e.g., 5000.50" required min="0" step="any">
|