-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwish.html
126 lines (116 loc) · 4.13 KB
/
wish.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="index">
<title>Logic Realm | Wish</title>
<link rel="canonical" href="https://www.logicrealm.xyz/wish.html" />
<link rel="icon" type="image/x-icon" href="img/icon.ico" />
<link rel="stylesheet" type="text/css" href="style2.css" />
<script src="https://kit.fontawesome.com/171e689b28.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class="container">
<h1>Logic Realm</h1>
<div class="menu-toggle">
<input type="checkbox" />
<span></span>
<span></span>
<span></span>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="all-apps.html">Softwares</a></li>
<li><a href="support/index.php">Support</a></li>
<li><a class="active" href="#">Wish</a></li>
<li>
<a href="https://www.skillfolio.rf.gd/" target="_blank">About</a>
</li>
</ul>
</nav>
</div>
</header>
<section id="contact">
<div id="cont-form" class="cont-form">
<h2>Wish Us</h2>
<p>
Tell Us about your wish. We will do our best to work with perfection.
</p>
<form id="contact-form">
<input type="text" placeholder="Name" name="name" id="cnt-name" required />
<input type="email" placeholder="Email" name="email" id="cnt-email" required />
<select id="cnt-drop" name="category" required>
<option value="" selected>- Select Freelancer Category -</option>
<option value="Web Developer">Web Developer</option>
<option value="Software Developert">Software Developer</option>
<option value="Graphics Designer">Graphics Designer</option>
<option value="Video Editor">Video Editor</option>
<option value="SEO">SEO</option>
</select>
<input type="text" placeholder="Tile of Your Wish" name="title" id="cnt-title" required>
<input type="number" placeholder="Your Budget (USD)" name="budget" id="budget" min="20" required>
<textarea placeholder="Give the full description of your work in order to achieve perfection." name="details"
id="cnt-msg" required></textarea>
<button name="submit" type="submit">Send</button>
</form>
</div>
<div id="popup" class="popup">
<span id="gicon" class="gift-icon">
<i class="fa-solid fa-gift"></i>
</span>
<h3 id="result-msg"></h3>
<p id="order-id"></p>
<button id="msg-close" onclick="closeMessage();">Close</button>
</div>
<div id="jin" class="jin">
<img src="img/jin-2.png" alt="Image of a Jin">
</div>
</section>
<section id="wish-details">
<h2>Track Your Wish</h2>
<form id="code-form">
<input type="text" name="wish-id" id="wish-id" placeholder="Your Wish ID" required>
<button type="submit" name="submit">Check</button>
</form>
<div id="wish-code-result">
<div class="headline-wish-details">
<h2>Wish Details</h2>
<button id="wish-details-close" onclick="wishDetailsClose()"><i class="fas fa-x"></i></button>
</div>
<table id="wish-table">
<thead>
<tr>
<th>ID</th>
<th>Title</th>
<th>Email</th>
<th>Budget</th>
<th>Status</th>
<th style="border-right: none; border-bottom: none;">Progress</th>
</tr>
</thead>
<tbody>
<tr>
<td id="wd-id"></td>
<td id="wd-title"></td>
<td id="wd-email"></td>
<td id="wd-budget"></td>
<td id="wd-status"></td>
<td id="wd-progress" style="border-left: none; border-bottom: none;"></td>
</tr>
</tbody>
</table>
<button id="wd-done" onclick="closeWish()">Wish Fulfilled</button>
</div>
</section>
<footer>
<div class="cont">
<p>© 2023 Logic Realm. All rights reserved.</p>
</div>
</footer>
</body>
<script src="wish.js"></script>
<script src="script.js"></script>
</html>