forked from Ali-Sdg90/CS-Queue-Message-Maker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
165 lines (148 loc) · 7.41 KB
/
index.html
File metadata and controls
165 lines (148 loc) · 7.41 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./Style/style.css" />
<link
rel="icon"
type="image/png"
href="./Assets/imgs/csi-icon-32.png"
/>
<title>CS Queue Message Maker</title>
</head>
<body>
<div class="custom-scale-div default-properties">
<h1 class="page-header-section">
<a class="header-EE ICARUS" target="_blank">-</a>
CS Queue Message Maker
<a class="header-EE ICARUS" target="_blank">-</a>
</h1>
<main class="page-main-section">
<div class="input-section">
<div class="section-header">Input List</div>
<textarea class="input-list" cols="30" rows="10"></textarea>
<div class="input-btn-container">
<button class="submit-input">Submit</button>
</div>
</div>
<div class="arrow-indicator">></div>
<div class="edit-section">
<div class="section-header">Edit List</div>
<div class="edit-list-container">
<div class="edit-list">
<!-- Member Structure 1
<div class="member-row">
<div class="member-info">
<div class="member-index">1</div>
<div>-</div>
<div class="member-name">فاطمه رضایی</div>
<div class="member-id">@Rezaie_f98</div>
</div>
<div class="action-btns">
<div class="action-btn add-to-end"></div>
<div class="action-btn delete-member"></div>
</div>
</div>-->
<!-- Member Structure 2
<div class="member-row">
<div class="member-info">
<div class="member-index">2</div>
<div>-</div>
<div class="member-name">فرشاد دولتیاری</div>
<div class="member-id">
@Farshad_80_and_some_more_text
</div>
</div>
<div class="action-btns">
<div class="action-btn add-to-end"></div>
<div class="action-btn delete-member"></div>
</div>
</div> -->
<!-- Add Member Structure
<form class="add-member">
<div class="add-member-inputs">
<input
type="text"
class="member-name-input"
placeholder="Full Name"
required
autocomplete="off"
/>
<input
type="text"
class="member-id-input"
placeholder="Telegram ID"
required
autocomplete="off"
/>
</div>
<button class="add-member-btn">Add</button>
</form> -->
<div class="how-to-use-container">
<h3 class="how-to-use-title">
How to Use the App:
</h3>
<div class="how-to-use-text">
Start by opening the "CS Internship - Queue"
group and copying the list you want to
update. Then, paste it into the "Input List"
section of the app and click the "Submit"
button. This will load your list into the
"Edit List" section for easy modifications.
</div>
<div class="how-to-use-text">
In the "Edit List" section, you can manage
the members efficiently. Move members to the
end of the list, remove them, or add new
members as needed — all with simple and
intuitive controls.
</div>
<div class="how-to-use-text">
When you’ve finished updating the list, go
to the "Output List" section and click the
"Copy" button to copy the updated list to
your clipboard. Finally, paste the updated
list back into the "CS Internship - Queue"
group to share your changes.
</div>
<div class="how-to-use-btn">Add Demo List</div>
<br />
</div>
</div>
</div>
</div>
<div class="arrow-indicator">></div>
<div class="output-section">
<div class="section-header">Output List</div>
<textarea
class="output-list"
cols="30"
rows="10"
disabled
></textarea>
<div class="input-btn-container">
<button class="copy-output">Copy</button>
</div>
</div>
</main>
<a
href="https://github.com/cs-internship/CS-Queue-Message-Maker"
class="page-footer-section"
target="_blank"
>∙ GitHub Repository ∙</a
>
</div>
<script type="module">
import autoAnimate from "https://cdn.jsdelivr.net/npm/@formkit/auto-animate";
autoAnimate(document.querySelector(".edit-list"));
</script>
<script src="./JS/customScaleCalc.js"></script>
<script src="./JS/index.js"></script>
<script src="./JS/addNewMember.js"></script>
<script src="./JS/convertInput.js"></script>
<script src="./JS/demoList.js"></script>
<script src="./JS/memberActionBtns.js"></script>
<script src="./JS/output.js"></script>
</body>
</html>