Update index.html
Browse files- index.html +11 -16
index.html
CHANGED
@@ -14,10 +14,15 @@
|
|
14 |
|
15 |
<div class="content-wrapper">
|
16 |
<header class="page-header">
|
17 |
-
<
|
|
|
|
|
|
|
|
|
|
|
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">
|
@@ -34,16 +39,7 @@
|
|
34 |
<summary>Platform Operator Panel</summary>
|
35 |
<div class="details-content">
|
36 |
<form id="admin-action-form">
|
37 |
-
|
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>
|
@@ -61,16 +57,15 @@
|
|
61 |
<input type="hidden" name="action" value="submit">
|
62 |
<div class="form-group">
|
63 |
<label for="ownerName">Owner Name</label>
|
64 |
-
<input type="text" id="ownerName" name="ownerName"
|
65 |
</div>
|
66 |
<div class="form-group">
|
67 |
<label for="contactEmail">Contact Email</label>
|
68 |
-
<input type="email" id="contactEmail" name="contactEmail"
|
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"
|
74 |
</div>
|
75 |
<button type="submit" id="submit-button">Submit Exchange Request</button>
|
76 |
</form>
|
|
|
14 |
|
15 |
<div class="content-wrapper">
|
16 |
<header class="page-header">
|
17 |
+
<svg class="logo" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" fill="currentColor">
|
18 |
+
<path d="M50 10 L90 45 L80 45 L50 20 L20 45 L10 45 Z" />
|
19 |
+
<path d="M50 25 L75 45 L65 45 L50 32 L35 45 L25 45 Z" />
|
20 |
+
<path d="M50 40 L60 50 L50 60 L40 50 Z" />
|
21 |
+
<path d="M50 65 L50 90" stroke="currentColor" stroke-width="4" />
|
22 |
+
</svg>
|
23 |
<h1>International Umbrella Endowment</h1>
|
24 |
</header>
|
25 |
+
|
26 |
<div class="form-container" id="lookup-container">
|
27 |
<h2>Check Deal Status</h2>
|
28 |
<form id="deal-lookup-form">
|
|
|
39 |
<summary>Platform Operator Panel</summary>
|
40 |
<div class="details-content">
|
41 |
<form id="admin-action-form">
|
42 |
+
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
</div>
|
44 |
</details>
|
45 |
</div>
|
|
|
57 |
<input type="hidden" name="action" value="submit">
|
58 |
<div class="form-group">
|
59 |
<label for="ownerName">Owner Name</label>
|
60 |
+
<input type="text" id="ownerName" name="ownerName" required>
|
61 |
</div>
|
62 |
<div class="form-group">
|
63 |
<label for="contactEmail">Contact Email</label>
|
64 |
+
<input type="email" id="contactEmail" name="contactEmail" required>
|
65 |
</div>
|
|
|
66 |
<div class="form-group">
|
67 |
<label for="tokenAmount">UMBR Tokens Requested</label>
|
68 |
+
<input type="number" id="tokenAmount" name="tokenAmount" required min="0" step="any">
|
69 |
</div>
|
70 |
<button type="submit" id="submit-button">Submit Exchange Request</button>
|
71 |
</form>
|